From 310d4d573b46f6cbf93c3767d446b00e57b9dee1 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 21 Dec 2020 21:46:00 -0700 Subject: [PATCH 01/52] Update death.dm --- code/modules/mob/living/carbon/death.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/death.dm b/code/modules/mob/living/carbon/death.dm index c3e849efa6..ee2f945b65 100644 --- a/code/modules/mob/living/carbon/death.dm +++ b/code/modules/mob/living/carbon/death.dm @@ -5,7 +5,7 @@ silent = FALSE losebreath = 0 - if(!gibbed) + if(!gibbed && !HAS_TRAIT(src, TRAIT_DEATHCOMA)) emote("deathgasp") . = ..() From 48cbe2ce4663829ff36e124436aff9227cc70c8d Mon Sep 17 00:00:00 2001 From: DeltaFire Date: Tue, 22 Dec 2020 19:15:52 +0100 Subject: [PATCH 02/52] snap --- code/datums/status_effects/buffs.dm | 13 ++++++++++--- .../antagonists/bloodsucker/bloodsucker_life.dm | 11 ++++++++--- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/code/datums/status_effects/buffs.dm b/code/datums/status_effects/buffs.dm index ef3979d822..f4a53d5c72 100644 --- a/code/datums/status_effects/buffs.dm +++ b/code/datums/status_effects/buffs.dm @@ -438,12 +438,19 @@ return else linked_alert.icon_state = "fleshmend" - owner.adjustBruteLoss(-10, FALSE) - owner.adjustFireLoss(-5, FALSE) owner.adjustOxyLoss(-10) if(!iscarbon(owner)) + owner.adjustBruteLoss(-10, FALSE) + owner.adjustFireLoss(-5, FALSE) return var/mob/living/carbon/C = owner + var/list/damaged_parts = C.get_damaged_bodyparts(TRUE,TRUE, status = list(BODYPART_ORGANIC, BODYPART_HYBRID, BODYPART_NANITES)) + if(damaged_parts.len) + for(var/obj/item/bodypart/part in damaged_parts) + part.heal_damage(10/damaged_parts.len, 5/damaged_parts.len, only_organic = FALSE, updating_health = FALSE) + C.updatehealth() + C.update_damage_overlays() + QDEL_LIST(C.all_scars) /obj/screen/alert/status_effect/fleshmend @@ -599,7 +606,7 @@ //Heal brain damage and toxyloss, alongside trauma owner.adjustOrganLoss(ORGAN_SLOT_BRAIN, -8) - owner.adjustToxLoss(-6, forced = TRUE) + owner.adjustToxLoss(-6, forced = TRUE, toxins_type = TOX_OMNI) M.cure_trauma_type(resilience = TRAUMA_RESILIENCE_BASIC) //Purges 50 rads per tick if(owner.radiation > 0) diff --git a/code/modules/antagonists/bloodsucker/bloodsucker_life.dm b/code/modules/antagonists/bloodsucker/bloodsucker_life.dm index 4117fc2b36..3e358cd795 100644 --- a/code/modules/antagonists/bloodsucker/bloodsucker_life.dm +++ b/code/modules/antagonists/bloodsucker/bloodsucker_life.dm @@ -120,9 +120,14 @@ if(bruteheal + fireheal + toxinheal > 0) // Just a check? Don't heal/spend, and return. if(mult == 0) return TRUE + // We have damage. Let's heal (one time) - C.adjustBruteLoss(-bruteheal * mult, forced = TRUE)// Heal BRUTE / BURN in random portions throughout the body. - C.adjustFireLoss(-fireheal * mult, forced = TRUE) + var/list/damaged_parts = C.get_damaged_bodyparts(TRUE,TRUE, status = list(BODYPART_ORGANIC, BODYPART_HYBRID, BODYPART_NANITES)) + if(damaged_parts.len) + for(var/obj/item/bodypart/part in damaged_parts) // Heal BRUTE / BURN equally distibuted over all damaged bodyparts. + part.heal_damage((bruteheal * mult)/damaged_parts.len, (fireheal * mult)/damaged_parts.len, only_organic = FALSE, updating_health = FALSE) + C.updatehealth() + C.update_damage_overlays() C.adjustToxLoss(-toxinheal * mult * 2, forced = TRUE) //Toxin healing because vamps arent immune //C.heal_overall_damage(bruteheal * mult, fireheal * mult) // REMOVED: We need to FORCE this, because otherwise, vamps won't heal EVER. Swapped to above. AddBloodVolume((bruteheal * -0.5 + fireheal * -1 + toxinheal * -0.2) / mult * costMult) // Costs blood to heal @@ -276,7 +281,7 @@ /datum/antagonist/bloodsucker/proc/FinalDeath() //Dont bother if we are already supposed to be dead if(FinalDeath) - return + return FinalDeath = TRUE //We are now supposed to die. Lets not spam it. if(!iscarbon(owner.current)) //Check for non carbons. owner.current.gib() From bff30f587b5d0a6b9441fd83577037af0f4628a9 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 23 Dec 2020 09:16:16 -0700 Subject: [PATCH 03/52] sigh --- code/game/objects/structures/crates_lockers/closets.dm | 7 +++++-- code/modules/cargo/supplypod.dm | 1 - 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm index 46eb82342a..52082637a3 100644 --- a/code/game/objects/structures/crates_lockers/closets.dm +++ b/code/game/objects/structures/crates_lockers/closets.dm @@ -446,8 +446,11 @@ var/mob/living/L = O if(!issilicon(L)) L.DefaultCombatKnockdown(40) - O.forceMove(T) - close() + if(istype(src, /obj/structure/closet/supplypod/extractionpod)) + O.forceMove(src) + else + O.forceMove(T) + close() else O.forceMove(T) return 1 diff --git a/code/modules/cargo/supplypod.dm b/code/modules/cargo/supplypod.dm index 6169c4d3f0..efac62c930 100644 --- a/code/modules/cargo/supplypod.dm +++ b/code/modules/cargo/supplypod.dm @@ -74,7 +74,6 @@ bluespace = TRUE explosionSize = list(0,0,1,2) landingDelay = 25 //Longer than others - reverseOptionList = list("Mobs"=TRUE,"Objects"=FALSE,"Anchored"=FALSE,"Underfloor"=FALSE,"Wallmounted"=FALSE,"Floors"=FALSE,"Walls"=FALSE) /obj/structure/closet/supplypod/centcompod style = STYLE_CENTCOM From 879ea9c6c851327d0a0442ee27c192f73855ab99 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 25 Dec 2020 14:23:16 -0800 Subject: [PATCH 04/52] ok --- code/modules/projectiles/projectile.dm | 5 +++++ .../projectile/bullets/ferromagnetic.dm | 16 ++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index fd442bb7a6..fb9e6ff6c6 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -100,6 +100,10 @@ var/impact_light_intensity = 3 var/impact_light_range = 2 var/impact_light_color_override + // Normal lighting effects + var/fired_light_intensity = 1 + var/fired_light_range = 0 + var/fired_light_color = rgb(255, 255, 255) //Homing var/homing = FALSE @@ -506,6 +510,7 @@ transform = M trajectory_ignore_forcemove = TRUE forceMove(starting) + set_light(fired_light_range, fired_light_intensity, fired_light_color) trajectory_ignore_forcemove = FALSE if(isnull(pixel_increment_amount)) pixel_increment_amount = SSprojectiles.global_pixel_increment_amount diff --git a/code/modules/projectiles/projectile/bullets/ferromagnetic.dm b/code/modules/projectiles/projectile/bullets/ferromagnetic.dm index 78deff601f..03482e2a9d 100644 --- a/code/modules/projectiles/projectile/bullets/ferromagnetic.dm +++ b/code/modules/projectiles/projectile/bullets/ferromagnetic.dm @@ -2,22 +2,22 @@ icon_state = "magjectile" damage = 20 armour_penetration = 20 - light_range = 3 + fired_light_range = 3 pixels_per_second = TILES_TO_PIXELS(16.667) range = 35 - light_color = LIGHT_COLOR_RED + fired_light_color = LIGHT_COLOR_RED /obj/item/projectile/bullet/magnetic/disabler icon_state = "magjectile-nl" //nl stands for non-lethal damage = 2 armour_penetration = 10 stamina = 20 - light_color = LIGHT_COLOR_BLUE + fired_light_color = LIGHT_COLOR_BLUE /obj/item/projectile/bullet/magnetic/weak damage = 15 armour_penetration = 10 - light_range = 2 + fired_light_range = 2 range = 25 /obj/item/projectile/bullet/magnetic/weak/disabler @@ -30,8 +30,8 @@ stamina = 10 movement_type = FLYING | UNSTOPPABLE range = 6 - light_range = 1 - light_color = LIGHT_COLOR_RED + fired_light_range = 1 + fired_light_color = LIGHT_COLOR_RED /obj/item/projectile/bullet/incendiary/mag_inferno icon_state = "magjectile-large" @@ -40,8 +40,8 @@ movement_type = FLYING | UNSTOPPABLE range = 20 pixels_per_second = TILES_TO_PIXELS(12.5) - light_range = 4 - light_color = LIGHT_COLOR_RED + fired_light_range = 4 + fired_light_color = LIGHT_COLOR_RED /obj/item/projectile/bullet/incendiary/mag_inferno/on_hit(atom/target, blocked = FALSE) ..() From c527086ab039d46e4d85326555bbdcf43c286393 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 25 Dec 2020 16:59:46 -0600 Subject: [PATCH 05/52] Automatic changelog generation for PR #13870 [ci skip] --- html/changelogs/AutoChangeLog-pr-13870.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13870.yml diff --git a/html/changelogs/AutoChangeLog-pr-13870.yml b/html/changelogs/AutoChangeLog-pr-13870.yml new file mode 100644 index 0000000000..820c524224 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13870.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - bugfix: "Magrifle ammo no longer glows." From 147f148c789a274c0294dc4484aadaf69cb9d744 Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Fri, 25 Dec 2020 19:05:13 -0700 Subject: [PATCH 06/52] Nyctophobia quirk: Effect now triggers in 0.2 seconds instead of instantly --- code/datums/traits/negative.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index fe27cc2baf..0cae5222bf 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -137,8 +137,12 @@ GLOBAL_LIST_EMPTY(family_heirlooms) var/lums = T.get_lumcount() if(lums <= 0.2) if(quirk_holder.m_intent == MOVE_INTENT_RUN) - to_chat(quirk_holder, "Easy, easy, take it slow... you're in the dark...") - quirk_holder.toggle_move_intent() + sleep(2) //0.2 seconds of being in the dark + T = get_turf(quirk_holder) + lums = T.get_lumcount() + if(lums <= 0.2) //check again + to_chat(quirk_holder, "Easy, easy, take it slow... you're in the dark...") + quirk_holder.toggle_move_intent() SEND_SIGNAL(quirk_holder, COMSIG_ADD_MOOD_EVENT, "nyctophobia", /datum/mood_event/nyctophobia) else SEND_SIGNAL(quirk_holder, COMSIG_CLEAR_MOOD_EVENT, "nyctophobia") From 1d296e2816ae176b4c15b7ebc6eb4a896204eaaa Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Fri, 25 Dec 2020 20:18:02 -0700 Subject: [PATCH 07/52] addtimer proc instead of sleep --- code/datums/traits/negative.dm | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index 0cae5222bf..3cbf4b3cd2 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -137,16 +137,18 @@ GLOBAL_LIST_EMPTY(family_heirlooms) var/lums = T.get_lumcount() if(lums <= 0.2) if(quirk_holder.m_intent == MOVE_INTENT_RUN) - sleep(2) //0.2 seconds of being in the dark - T = get_turf(quirk_holder) - lums = T.get_lumcount() - if(lums <= 0.2) //check again - to_chat(quirk_holder, "Easy, easy, take it slow... you're in the dark...") - quirk_holder.toggle_move_intent() + addtimer(CALLBACK(src, .proc/recheck),2) //0.2 seconds of being in the dark SEND_SIGNAL(quirk_holder, COMSIG_ADD_MOOD_EVENT, "nyctophobia", /datum/mood_event/nyctophobia) else SEND_SIGNAL(quirk_holder, COMSIG_CLEAR_MOOD_EVENT, "nyctophobia") +/datum/quirk/nyctophobia/proc/recheck() + var/turf/T = get_turf(quirk_holder) + var/lums = T.get_lumcount() + if(lums <= 0.2) //check again, did they remain in the dark for 0.2 seconds? + to_chat(quirk_holder, "Easy, easy, take it slow... you're in the dark...") + quirk_holder.toggle_move_intent() + /datum/quirk/lightless name = "Light Sensitivity" desc = "Bright lights irritate you. Your eyes start to water, your skin feels itchy against the photon radiation, and your hair gets dry and frizzy. Maybe it's a medical condition. If only Nanotrasen was more considerate of your needs..." From cac5e6dad643247f2c778789ff23c3e36c9fc5bf Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Fri, 25 Dec 2020 20:59:10 -0700 Subject: [PATCH 08/52] A Pubby Christmas --- _maps/map_files/PubbyStation/PubbyStation.dmm | 134913 +-------------- 1 file changed, 6988 insertions(+), 127925 deletions(-) diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index b053c5176c..19d17bd138 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -1,127928 +1,6991 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aab" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/cyborg, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aac" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aad" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"aae" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aaf" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aag" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aah" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aai" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aaj" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aak" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aal" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aam" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aan" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aao" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aap" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aaq" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"aar" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/item/tank/internals/plasma, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aas" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/oil, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engine/supermatter) -"aat" = ( -/obj/structure/closet/wardrobe/green, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sign/poster/official/fashion{ - pixel_y = -32 - }, -/obj/structure/sign/poster/official/fashion{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aau" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/structure/sign/poster/official/hydro_ad{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aav" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aaw" = ( -/obj/structure/sign/poster/official/hydro_ad, -/turf/closed/wall, -/area/hydroponics) -"aax" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sign/poster/official/medical_green_cross{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"aay" = ( -/obj/structure/sign/poster/official/medical_green_cross, -/turf/closed/wall, -/area/medical/medbay/central) -"aaz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/poster/official/medical_green_cross{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aaA" = ( -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"aaB" = ( -/obj/structure/closet/masks, -/obj/item/reagent_containers/food/snacks/deadmouse, -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"aaC" = ( -/obj/structure/sign/poster/contraband/scum{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"aaD" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/clothing/mask/balaclava, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaE" = ( -/obj/machinery/light/small, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaF" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/pool) -"aaG" = ( -/obj/structure/closet, -/obj/item/weldingtool, -/obj/item/crowbar, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaH" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaI" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"aaJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) -"aaK" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#706891" - }, -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"aaL" = ( -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) -"aaM" = ( -/turf/open/floor/plasteel/yellowsiding/corner{ - dir = 8 - }, -/area/crew_quarters/fitness/pool) -"aaN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaO" = ( -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"aaP" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 8 - }, -/area/crew_quarters/fitness/pool) -"aaQ" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aaR" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Pool" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/walk{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaW" = ( -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"aaX" = ( -/obj/structure/bed, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"aaY" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) -"aaZ" = ( -/obj/structure/bed, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"aba" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"abb" = ( -/obj/machinery/camera{ - c_tag = "Fitness Room" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"abc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellowsiding/corner, -/area/crew_quarters/fitness/pool) -"abd" = ( -/obj/structure/closet/lasertag/red, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abe" = ( -/obj/machinery/vending/kink, -/obj/machinery/status_display/evac{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abf" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/maintenance/department/science) -"abg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/lasertag/blue, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abi" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abj" = ( -/obj/machinery/pool/controller, -/turf/open/floor/plasteel/yellowsiding, -/area/crew_quarters/fitness/pool) -"abk" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/bed, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"abl" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"abm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellowsiding{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) -"abn" = ( -/obj/machinery/pool/filter{ - pixel_y = 24 - }, -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"abo" = ( -/obj/structure/pool/ladder{ - dir = 2; - pixel_y = 24 - }, -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"abp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"abq" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellowsiding{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) -"abr" = ( -/obj/machinery/pool/drain, -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"abs" = ( -/obj/structure/pool/Lboard, -/turf/open/pool, -/area/crew_quarters/fitness/pool) -"abt" = ( -/obj/structure/pool/Rboard, -/turf/open/floor/plasteel/yellowsiding{ - dir = 8 - }, -/area/crew_quarters/fitness/pool) -"abu" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"abv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"abw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/pool) -"abx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/closet/athletic_mixed, -/obj/item/toy/poolnoodle/blue, -/obj/item/toy/poolnoodle/red, -/obj/item/toy/poolnoodle/yellow, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"aby" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"abz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"abA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/yellowsiding/corner{ - dir = 4 - }, -/area/crew_quarters/fitness/pool) -"abB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -2; - pixel_y = -27 - }, -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"abC" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/yellowsiding{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"abD" = ( -/turf/open/floor/plasteel/yellowsiding/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/pool) -"abE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/fitness/pool"; - name = "Pool APC"; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/pool) -"abF" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/pool) -"abG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"abH" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Pool" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"abI" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"abJ" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "MiniSat External Fore"; - dir = 1; - network = list("minisat") - }, -/turf/open/space, -/area/space/nearstation) -"abK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"abL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abN" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space) -"abO" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"abP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abS" = ( -/obj/structure/weightmachine/stacklifter, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"abT" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Pool" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/fitness/pool) -"abV" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"abW" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"abX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"abY" = ( -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acd" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"ace" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acf" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber North"; - dir = 1; - network = list("minisat") - }, -/obj/machinery/light, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"ach" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"aci" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/ai_monitored/turret_protected/ai) -"acj" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -27 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"ack" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber Center"; - network = list("minisat") - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acl" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/ai"; - dir = 1; - name = "AI Chamber APC"; - pixel_y = 24 - }, -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acm" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat External Port"; - dir = 8; - network = list("minisat") - }, -/turf/open/space, -/area/space/nearstation) -"acn" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber West"; - dir = 4; - network = list("minisat") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aco" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acp" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/command/glass{ - name = "AI Core"; - req_access_txt = "65" - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acq" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai"; - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acr" = ( -/obj/machinery/ai_slipper{ - uses = 8 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acs" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - name = "AI Satellite turret control"; - pixel_x = -5; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"act" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/command/glass{ - name = "AI Core"; - req_access_txt = "65" - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acu" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber East"; - dir = 8; - network = list("minisat") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"acv" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat External Starboard"; - dir = 4; - network = list("minisat") - }, -/turf/open/space, -/area/space/nearstation) -"acw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acy" = ( -/obj/effect/landmark/start/ai, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = -9 - }, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -31 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = -9 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -28; - pixel_y = -28 - }, -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 28; - pixel_y = -28 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acz" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acA" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acB" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acC" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acD" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber South"; - network = list("minisat") - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 20 - }, -/obj/machinery/status_display/ai{ - pixel_y = 37 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acE" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = 24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"acF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plating/airless, -/area/ai_monitored/turret_protected/AIsatextAS) -"acG" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acH" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acI" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/ai_monitored/turret_protected/ai) -"acJ" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acL" = ( -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/machinery/ai_slipper{ - uses = 8 - }, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acM" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/white, -/area/ai_monitored/turret_protected/ai) -"acN" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space, -/area/space/nearstation) -"acO" = ( -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"acP" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"acQ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"acR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"acS" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"acT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"acU" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"acV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"acW" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"acX" = ( -/obj/machinery/computer/monitor, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"acY" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"acZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"ada" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"adb" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command/glass{ - name = "AI Core"; - req_access_txt = "65" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"adc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"add" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"ade" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/mmi, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/computer/rdconsole/robotics, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adg" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adi" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adk" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/aisat_interior"; - dir = 8; - name = "MiniSat Antechamber APC"; - pixel_x = -24 - }, -/obj/machinery/recharger, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adl" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adm" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adn" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"ado" = ( -/obj/structure/table, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/item/paper_bin, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adq" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"ads" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adt" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Maintenance Port Fore"; - dir = 1; - network = list("minisat") - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adv" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adx" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"ady" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adz" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber Observation"; - dir = 1; - network = list("minisat") - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adA" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"adB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adD" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Waste Out" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Maintenance Starboard Fore"; - dir = 1; - network = list("minisat") - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"adG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adH" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"adM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Observation"; - req_one_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"adN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"adO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"adP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"adQ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"adR" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"adS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"adU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"adV" = ( -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAP) -"adW" = ( -/obj/structure/lattice, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Bridge Port Fore"; - network = list("minisat") - }, -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAP) -"adX" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"adY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"adZ" = ( -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAS) -"aea" = ( -/obj/structure/lattice, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Bridge Starboard Fore"; - network = list("minisat") - }, -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"aec" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"aed" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"aee" = ( -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"aef" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/porta_turret/ai{ - installation = /obj/item/gun/energy/e_gun - }, -/turf/open/floor/plating/airless, -/area/ai_monitored/turret_protected/aisat_interior) -"aeh" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"aei" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aej" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/porta_turret/ai{ - installation = /obj/item/gun/energy/e_gun - }, -/turf/open/floor/plating/airless, -/area/ai_monitored/turret_protected/aisat_interior) -"aek" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"ael" = ( -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"aem" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"aen" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/prison) -"aeo" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/potato, -/obj/item/seeds/carrot, -/obj/item/seeds/corn, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aep" = ( -/obj/item/cultivator, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeq" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/seeds/glowshroom, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Permabrig Central"; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aer" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aes" = ( -/obj/structure/easel, -/obj/item/canvas/nineteenXnineteen, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aet" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeu" = ( -/obj/machinery/biogenerator, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aev" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"aew" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aex" = ( -/obj/structure/lattice, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Bridge Port Aft"; - dir = 1; - network = list("minisat") - }, -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAP) -"aey" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aez" = ( -/obj/structure/lattice, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Bridge Starboard Aft"; - dir = 1; - network = list("minisat") - }, -/turf/open/space, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeC" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/grass, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeD" = ( -/obj/item/plant_analyzer, -/obj/item/shovel/spade, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeE" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/sunflower, -/obj/item/seeds/poppy, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeF" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeG" = ( -/obj/item/storage/crayons, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"aeO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Hallway"; - req_one_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aeP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"aeQ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeS" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"aeT" = ( -/obj/structure/bookcase, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeU" = ( -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeV" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aeW" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aeX" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aeY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/AIsatextAP"; - dir = 8; - name = "MiniSat Port Maintenance APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"aeZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Maintenance Port Aft"; - network = list("minisat") - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afc" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afe" = ( -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aff" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afg" = ( -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Foyer"; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afh" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Maintenance Starboard Aft"; - network = list("minisat") - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afm" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/AIsatextAS"; - dir = 4; - name = "MiniSat Starboard Maintenance APC"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afn" = ( -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afo" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afp" = ( -/obj/item/storage/dice, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afq" = ( -/obj/structure/table, -/obj/item/instrument/harmonica, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aft" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afu" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air Out" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afv" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afy" = ( -/obj/effect/landmark/start/cyborg, -/obj/item/beacon, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afz" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afB" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afC" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afD" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afE" = ( -/obj/item/toy/cards/deck, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afF" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afG" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afI" = ( -/obj/machinery/computer/arcade{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"afJ" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space/nearstation) -"afK" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afL" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afM" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"afN" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"afO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"afR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"afS" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afT" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool{ - layer = 5 - }, -/obj/item/extinguisher{ - layer = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAS) -"afU" = ( -/turf/closed/wall, -/area/security/execution/transfer) -"afX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"afZ" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aga" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"agb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"agc" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - base_state = "right"; - icon_state = "right"; - name = "Unisex Showers" - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agd" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"age" = ( -/obj/machinery/teleport/station, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agf" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"agg" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"agh" = ( -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agi" = ( -/obj/machinery/door/poddoor{ - id = "executionspaceblast" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agl" = ( -/obj/structure/table/glass, -/obj/item/restraints/handcuffs, -/obj/item/razor, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agn" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ago" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agp" = ( -/obj/item/soap/nanotrasen, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agr" = ( -/obj/machinery/computer/teleporter{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ags" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"agt" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access_txt = "65" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agu" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agw" = ( -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Solutions Room"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agx" = ( -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agy" = ( -/turf/closed/wall, -/area/security/prison) -"agz" = ( -/obj/machinery/door/poddoor/preopen{ - id = "permacell2"; - name = "cell blast door" - }, -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt2"; - name = "Cell 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"agA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/security/prison) -"agB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "permacell1"; - name = "cell blast door" - }, -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt1"; - name = "Cell 1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"agC" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restroom" - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agE" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agI" = ( -/obj/structure/bed, -/obj/machinery/camera{ - c_tag = "Permabrig Cell 2"; - network = list("ss13","prison") - }, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/toy/plush/slimeplushie, -/turf/open/floor/plasteel, -/area/security/prison) -"agK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt2"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/prison) -"agL" = ( -/obj/structure/bed, -/obj/machinery/camera{ - c_tag = "Permabrig Cell 1"; - network = list("ss13","prison") - }, -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/toy/plush/lizardplushie, -/turf/open/floor/plasteel, -/area/security/prison) -"agM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"agN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "permabolt1"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/prison) -"agO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"agP" = ( -/turf/closed/wall, -/area/security/main) -"agQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"agR" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"agS" = ( -/obj/structure/transit_tube, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"agT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/security/execution/transfer) -"agV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Solutions Room"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"agW" = ( -/obj/machinery/flasher{ - id = "PCell 2"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/prison) -"agY" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/security/prison) -"agZ" = ( -/obj/machinery/flasher{ - id = "PCell 1"; - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/prison) -"aha" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"ahb" = ( -/obj/structure/toilet/secret/prison{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"ahd" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access_txt = "65" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ahi" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"ahj" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/item/clothing/suit/straight_jacket, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/breath/medical, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahk" = ( -/obj/machinery/button/flasher{ - id = "executionflash"; - pixel_x = 6; - pixel_y = 27 - }, -/obj/machinery/button/door{ - id = "executionspaceblast"; - name = "Vent to Space"; - pixel_x = -6; - pixel_y = 32; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/button/ignition{ - id = "secigniter"; - pixel_x = 6; - pixel_y = 36 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahl" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahm" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 2"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/security/prison) -"aho" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/prison) -"ahp" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 1"; - req_access_txt = "2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahq" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahr" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube, -/turf/open/space/basic, -/area/space/nearstation) -"aht" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ahu" = ( -/obj/structure/table/glass, -/obj/item/flashlight/lamp, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"ahv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"ahw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"ahx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahy" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahz" = ( -/obj/machinery/button/door{ - id = "executionfireblast"; - name = "Transfer Area Lockdown"; - pixel_x = 25; - pixel_y = -5; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = 24; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/execution/transfer) -"ahB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahC" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "PCell 2"; - pixel_x = 5; - pixel_y = 24 - }, -/obj/machinery/button/door{ - id = "permacell2"; - name = "Cell 2 Lockdown"; - pixel_x = 4; - pixel_y = 34; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"ahF" = ( -/obj/machinery/camera{ - c_tag = "Brig Prison Hallway"; - network = list("ss13","prison") - }, -/obj/machinery/computer/security/telescreen/prison{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahG" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/flasher{ - id = "PCell 1"; - pixel_x = 5; - pixel_y = 24 - }, -/obj/machinery/button/door{ - id = "permacell1"; - name = "Cell 1 Lockdown"; - pixel_x = 4; - pixel_y = 34; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahH" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahJ" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Prison Wing APC"; - pixel_x = 1; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ahK" = ( -/obj/structure/table, -/obj/item/melee/chainofcommand, -/obj/item/melee/baton, -/turf/open/floor/plasteel, -/area/security/prison) -"ahL" = ( -/turf/closed/wall/r_wall, -/area/security/armory) -"ahM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -27 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ahR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/turf/open/space/basic, -/area/space/nearstation) -"ahS" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"ahT" = ( -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"ahU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"ahV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahW" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Prisoner Transfer Centre"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ahZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aia" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aib" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/prison) -"aic" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aid" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aie" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aif" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aig" = ( -/turf/open/floor/plasteel, -/area/security/prison) -"aih" = ( -/obj/structure/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/restraints/handcuffs, -/obj/item/razor, -/turf/open/floor/plasteel, -/area/security/prison) -"aii" = ( -/obj/structure/table, -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aij" = ( -/obj/structure/closet/secure_closet/contraband/armory, -/obj/item/poster/random_contraband, -/obj/item/clothing/suit/armor/navyblue/russian, -/obj/item/grenade/plastic/c4, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aik" = ( -/obj/structure/closet/secure_closet/lethalshots, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor" - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ail" = ( -/obj/vehicle/ridden/secway, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aim" = ( -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ain" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"aio" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"aip" = ( -/obj/structure/closet/bombcloset/security, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"aiq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"air" = ( -/obj/vehicle/ridden/secway, -/obj/item/key/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ais" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ait" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiu" = ( -/turf/closed/wall, -/area/maintenance/department/security/brig) -"aiv" = ( -/obj/structure/table/glass, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"aiw" = ( -/obj/machinery/power/emitter/anchored{ - dir = 1; - state = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/transfer) -"aix" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"aiy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"aiz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"aiA" = ( -/turf/closed/wall/r_wall, -/area/security/execution/transfer) -"aiB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiD" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiF" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aiJ" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiK" = ( -/obj/structure/table, -/obj/item/assembly/signaler, -/obj/item/electropack, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aiL" = ( -/obj/structure/table, -/obj/item/storage/box/flashbangs{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/lockbox/loyalty{ - layer = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aiM" = ( -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aiN" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aiO" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/machinery/power/apc/highcap/five_k{ - dir = 4; - name = "Armory APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aiP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/main) -"aiQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/main) -"aiR" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hos) -"aiS" = ( -/turf/closed/wall, -/area/maintenance/department/crew_quarters/dorms) -"aiT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aiU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/barsign, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aiV" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiW" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiX" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiY" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aiZ" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"aja" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ajb" = ( -/obj/structure/closet/secure_closet/injection, -/obj/machinery/power/apc{ - dir = 4; - name = "Prisoner Transfer Centre"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"ajc" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ajd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aje" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"ajf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ajg" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/item/clothing/suit/armor/laserproof, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajh" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"aji" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajj" = ( -/obj/structure/rack, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajk" = ( -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajl" = ( -/obj/structure/filingcabinet, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajm" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box{ - pixel_y = 2 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajn" = ( -/obj/structure/table, -/obj/structure/sign/plaques/golden{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajo" = ( -/obj/machinery/vending/coffee, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajp" = ( -/obj/machinery/photocopier, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajq" = ( -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajr" = ( -/obj/item/reagent_containers/food/snacks/donut/chaos, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"ajs" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hos) -"ajt" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aju" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"ajv" = ( -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ajx" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ajy" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ajz" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ajA" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_ne"; - name = "northeast of station"; - width = 23 - }, -/turf/open/space, -/area/space/nearstation) -"ajB" = ( -/obj/item/storage/box/mousetraps, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajC" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajD" = ( -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajE" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajF" = ( -/obj/machinery/atmospherics/components/unary/tank/oxygen, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajG" = ( -/obj/machinery/atmospherics/components/unary/tank/nitrogen, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ajH" = ( -/turf/closed/wall, -/area/security/processing/cremation) -"ajI" = ( -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Crematorium"; - req_access_txt = "2;27" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"ajJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"ajK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"ajL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"ajM" = ( -/turf/closed/wall, -/area/security/brig) -"ajN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajO" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/structure/sign/poster/official/safety_report{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajP" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajR" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajT" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"ajU" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Security Office APC"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajV" = ( -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) -"ajW" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) -"ajX" = ( -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajY" = ( -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ajZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aka" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akb" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/plaques/kiddie{ - desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint."; - name = "\improper 'Diploma' frame"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akc" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#706891" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akd" = ( -/obj/structure/table/wood, -/obj/item/storage/box/seccarts{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/storage/box/deputy, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"ake" = ( -/obj/structure/closet/secure_closet/hos, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 - }, -/obj/machinery/button/door{ - id = "hos_spess_shutters"; - name = "Space shutters"; - pixel_x = 24; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akf" = ( -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"akg" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akh" = ( -/obj/effect/decal/cleanable/oil{ - icon_state = "floor5" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akj" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ako" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akp" = ( -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"akr" = ( -/obj/machinery/washing_machine, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = -31 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aks" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"akt" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/button/door{ - id = "mainthideout"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aku" = ( -/obj/machinery/atmospherics/components/trinary/mixer/flipped{ - dir = 1; - node1_concentration = 0.2; - node2_concentration = 0.8; - on = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"akv" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"akw" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/obj/machinery/meter, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"akx" = ( -/obj/structure/bodycontainer/crematorium, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"aky" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"akz" = ( -/obj/machinery/button/crematorium{ - pixel_x = 25 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Crematorium APC"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"akA" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"akB" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"akC" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/structure/table/glass, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"akD" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"akE" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"akF" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"akI" = ( -/obj/machinery/door/airlock/security{ - name = "Evidence Room"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akK" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/camera{ - c_tag = "Brig Evidence Room"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akL" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun/advtaser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun/advtaser, -/obj/item/gun/energy/e_gun/advtaser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/e_gun/advtaser, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akN" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/rack, -/obj/item/key/security, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akP" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"akQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"akR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"akT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"akU" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akV" = ( -/obj/item/storage/secure/safe{ - pixel_x = -22; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"akZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hos_spess_shutters"; - name = "Space shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"ala" = ( -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"alb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/space, -/area/space/nearstation) -"alc" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/cigars, -/obj/item/stack/spacecash/c20, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ale" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"alf" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"alg" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"alh" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ali" = ( -/obj/machinery/door/airlock/abandoned{ - id_tag = "mainthideout"; - name = "Hideout" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alj" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"all" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"aln" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Brig Crematorium"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alp" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/brig) -"alq" = ( -/obj/item/storage/box/bodybags, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/item/reagent_containers/syringe{ - name = "steel point" - }, -/obj/item/reagent_containers/glass/bottle/charcoal, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"alr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"als" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"alt" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Brig Infirmary" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"alu" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"aly" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alz" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alA" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"alB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"alC" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/pen, -/obj/item/folder/red{ - layer = 2.9; - pixel_x = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"alD" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel, -/area/security/main) -"alE" = ( -/turf/open/floor/plasteel, -/area/security/main) -"alF" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel, -/area/security/main) -"alG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"alH" = ( -/turf/open/floor/plasteel/dark, -/area/security/main) -"alI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"alJ" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"alK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"alL" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/stamp/hos, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"alM" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"alN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "hos_spess_shutters"; - name = "Space shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"alO" = ( -/obj/structure/transit_tube/diagonal, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"alP" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"alQ" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/department/crew_quarters/dorms) -"alR" = ( -/obj/effect/landmark/blobstart, -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"alS" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"alT" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alU" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Supply to Security" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"alW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alX" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"alZ" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/camera{ - c_tag = "Brig Infirmary"; - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ama" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amc" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Brig Infirmary" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ame" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amf" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 4; - name = "Brig APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amg" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"amh" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"ami" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Armory"; - req_access_txt = "3" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"amj" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"amk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Armory"; - req_access_txt = "3" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"aml" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/warden) -"amm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security Office"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_x = -31 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amo" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amp" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amq" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"amr" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ams" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"amt" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Head of Security"; - req_access_txt = "58" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"amu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"amv" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amx" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amy" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amz" = ( -/obj/machinery/computer/security/hos{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"amA" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"amB" = ( -/obj/structure/transit_tube/crossing/horizontal, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"amC" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"amD" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"amF" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/department/crew_quarters/dorms) -"amG" = ( -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/department/crew_quarters/dorms) -"amH" = ( -/obj/machinery/door/airlock/atmos/abandoned{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"amI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_one_access_txt = "2;27" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"amJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/security/processing/cremation) -"amK" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Security Delivery"; - req_access_txt = "1" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 1; - freq = 1400; - location = "Security" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"amL" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"amM" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amO" = ( -/obj/structure/closet/crate/freezer, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/item/reagent_containers/blood/OMinus, -/obj/item/reagent_containers/blood/OMinus, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"amP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amR" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amS" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/clothing/mask/gas/sechailer, -/obj/machinery/power/apc{ - dir = 8; - name = "Brig Control APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amT" = ( -/obj/machinery/computer/prisoner/management, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amU" = ( -/obj/machinery/computer/security, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Control Room" - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amV" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amX" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"amZ" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ana" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"anc" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/security/main) -"and" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"ane" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) -"anf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ang" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"ani" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"anj" = ( -/obj/structure/table/wood, -/obj/item/phone, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"ank" = ( -/obj/machinery/computer/card/minor/hos{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hos) -"anl" = ( -/obj/structure/transit_tube/diagonal, -/turf/open/space/basic, -/area/space/nearstation) -"anm" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Pete's Speakeasy" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"anq" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"anr" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ans" = ( -/obj/item/wirecutters, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ant" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"anu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"anv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/security/processing/cremation) -"anw" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing/cremation) -"anx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Brig Infirmary Maintenance"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"any" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anz" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/warden) -"anC" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anI" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anJ" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"anK" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"anL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"anM" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) -"anN" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) -"anO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"anP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"anQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"anR" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anS" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 4; - name = "Station Intercom (General)"; - pixel_y = -27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anV" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "Head of Security's Office APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"anW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "hos_spess_shutters"; - name = "Space shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"anX" = ( -/turf/closed/wall/r_wall, -/area/teleporter) -"anY" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"aob" = ( -/obj/structure/closet/emcloset, -/obj/item/camera, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"aod" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aof" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aog" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoj" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aok" = ( -/obj/machinery/computer/security/labor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aol" = ( -/obj/machinery/computer/shuttle/labor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aom" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aon" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"aoo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aop" = ( -/obj/structure/bed/dogbed, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = -32 - }, -/mob/living/simple_animal/pet/dog/pug{ - name = "McGriff" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoq" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aor" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aos" = ( -/obj/machinery/door/airlock/security{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aot" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aou" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aov" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aow" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aox" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aoy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aoz" = ( -/turf/closed/wall, -/area/maintenance/fore) -"aoB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"aoH" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/solar/port) -"aoI" = ( -/obj/structure/lattice, -/turf/open/space, -/area/solar/port) -"aoJ" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space, -/area/solar/port) -"aoK" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"aoL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aoO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Gulag Teleporter"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box/prisoner, -/obj/item/razor{ - pixel_x = -6 - }, -/obj/item/paper/guides/jobs/security/labor_camp, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aoP" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aoQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"aoR" = ( -/obj/item/book/manual/wiki/security_space_law, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoS" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Entrance Lockdown"; - pixel_x = 5; - pixel_y = -2 - }, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Permabrig Lockdown"; - pixel_x = 5; - pixel_y = 8; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoT" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/warden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoX" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/laser_pointer/red, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoY" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light_switch{ - pixel_y = -22 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aoZ" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"apa" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"apb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"apc" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 7 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/main) -"apd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ape" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"apf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"apg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Security Access"; - req_access_txt = "1" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aph" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"api" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Fore Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apk" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apl" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apm" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apn" = ( -/turf/open/floor/plating, -/area/maintenance/fore) -"apo" = ( -/obj/structure/transit_tube/diagonal/crossing, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"app" = ( -/obj/machinery/camera{ - c_tag = "Bridge Starboard Exterior"; - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"apr" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/plasteel/dark, -/area/gateway) -"apt" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/clothing/mask/cigarette, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"apu" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"apv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"apw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/item/camera_film, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/crew_quarters/dorms) -"apz" = ( -/obj/item/target/clown, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"apB" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"apE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"apF" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"apG" = ( -/obj/machinery/gulag_teleporter, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"apH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"apJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/warden) -"apK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Armory Desk"; - req_access_txt = "3" - }, -/obj/machinery/door/window/southleft{ - name = "Reception Desk"; - req_access_txt = "63" - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/warden) -"apM" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"apN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = "1" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"apQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"apR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/fore) -"apS" = ( -/obj/structure/transit_tube/curved, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"apT" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"apU" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"apV" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"apW" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"apX" = ( -/turf/closed/wall, -/area/crew_quarters/dorms) -"aqa" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"aqb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space, -/area/solar/port) -"aqc" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"aqd" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"aqe" = ( -/obj/item/target/alien, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aqg" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aqh" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aqi" = ( -/obj/structure/closet, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/red, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aqm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqq" = ( -/obj/machinery/camera{ - c_tag = "Brig Cells" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqs" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqv" = ( -/obj/machinery/camera{ - c_tag = "Brig Entrance" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqA" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aqC" = ( -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aqD" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aqE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fore) -"aqF" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"aqG" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aqH" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"aqI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridgespace"; - name = "bridge external shutters" - }, -/turf/open/floor/plating, -/area/bridge) -"aqJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"aqK" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"aqL" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aqM" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"aqN" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"aqO" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Vault APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"aqP" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aqQ" = ( -/obj/structure/window/reinforced, -/obj/machinery/power/apc{ - dir = 8; - name = "Gateway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"aqR" = ( -/obj/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"aqS" = ( -/obj/machinery/door/window{ - name = "Gateway Chamber"; - req_access_txt = "62" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/gateway) -"aqT" = ( -/obj/machinery/computer/arcade, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"aqU" = ( -/obj/machinery/washing_machine, -/obj/machinery/requests_console{ - department = "Crew Quarters"; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"aqV" = ( -/obj/machinery/washing_machine, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"aqY" = ( -/obj/docking_port/stationary{ - dwidth = 2; - height = 6; - id = "monastery_shuttle_station"; - name = "Station"; - roundstart_template = /datum/map_template/shuttle/escape_pod/large; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"ara" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/port) -"arc" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ard" = ( -/obj/item/clothing/head/cone, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ari" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/machinery/button/door{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - pixel_y = -25; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ark" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"arl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"arm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aro" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arr" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ars" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"art" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aru" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arv" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arw" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arx" = ( -/obj/item/flashlight/lamp, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ary" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arz" = ( -/obj/machinery/camera{ - c_tag = "Brig Interrogation"; - dir = 8; - network = list("interrogation") - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"arA" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"arB" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Bridge MiniSat Access"; - dir = 4 - }, -/turf/open/floor/plating, -/area/bridge) -"arC" = ( -/obj/structure/transit_tube_pod{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bridge) -"arD" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/bridge) -"arE" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bridge) -"arF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"arG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"arH" = ( -/obj/machinery/modular_computer/console/preset/command, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arI" = ( -/obj/machinery/computer/med_data, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arJ" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arK" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arL" = ( -/obj/machinery/computer/card, -/obj/machinery/camera{ - c_tag = "Bridge - Central" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arM" = ( -/obj/machinery/computer/communications, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arN" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arO" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arP" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arQ" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arR" = ( -/obj/machinery/computer/prisoner/management, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"arS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"arT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"arU" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"arV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"arW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"arX" = ( -/obj/machinery/camera{ - c_tag = "Gateway"; - dir = 4 - }, -/obj/structure/table, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/paper/pamphlet, -/turf/open/floor/plasteel, -/area/gateway) -"arY" = ( -/obj/machinery/computer/gateway_control, -/turf/open/floor/plasteel, -/area/gateway) -"arZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"asa" = ( -/obj/structure/table, -/obj/item/radio/off{ - pixel_y = 6 - }, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/radio/off, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/obj/item/radio/off, -/turf/open/floor/plasteel, -/area/gateway) -"asb" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"asc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"asd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"ase" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"asf" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"asg" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/bedsheetbin/color, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"ash" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"asi" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"asj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"aso" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"asr" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"asu" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asy" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asA" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asB" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asE" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asF" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asG" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"asH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asI" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asJ" = ( -/obj/item/folder/red, -/obj/item/taperecorder, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asK" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/bridge) -"asN" = ( -/turf/open/floor/plasteel, -/area/bridge) -"asO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/bridge) -"asP" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"asQ" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/keycard_auth{ - pixel_x = -24; - pixel_y = 10 - }, -/obj/machinery/button/door{ - id = "bridgespace"; - name = "Bridge Space Lockdown"; - pixel_x = -24; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"asR" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"asS" = ( -/turf/open/floor/plasteel/dark, -/area/bridge) -"asT" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/button/door{ - id = "bridgespace"; - name = "Bridge Space Lockdown"; - pixel_x = 24; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"asU" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/closed/wall/r_wall, -/area/bridge) -"asV" = ( -/obj/structure/closet/crate/goldcrate, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"asW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"asX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"asY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/nuke_storage) -"asZ" = ( -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"ata" = ( -/obj/machinery/light_switch{ - pixel_x = -20 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"atb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"atc" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"atd" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"atf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/dorms) -"atg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"ath" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Laundry Room"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"ati" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"atj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"atk" = ( -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"atl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"atn" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/recreation) -"atp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green, -/area/maintenance/department/security/brig) -"atq" = ( -/turf/open/floor/circuit/green, -/area/maintenance/department/security/brig) -"atv" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/security/brig) -"atw" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atx" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/brig) -"aty" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"atA" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atC" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/brig) -"atE" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atF" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"atG" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atH" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"atI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"atJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"atK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - name = "Emergency Escape"; - req_access_txt = "20" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/fore) -"atL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/bridge) -"atM" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"atN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/bridge) -"atO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/bridge) -"atP" = ( -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atQ" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atU" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atX" = ( -/obj/machinery/computer/shuttle/labor{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"atY" = ( -/turf/closed/wall, -/area/bridge) -"atZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"aua" = ( -/obj/structure/closet/secure_closet/freezer/money, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/clothing/head/bearpelt, -/obj/item/skub, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aub" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"auc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aud" = ( -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("vault") - }, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aue" = ( -/obj/structure/safe, -/obj/item/bikehorn/golden, -/obj/item/ammo_box/a357, -/obj/item/tank/internals/plasma/full, -/obj/item/disk/nuclear/fake, -/obj/item/stack/ore/diamond, -/obj/item/gun/energy/disabler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"auf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aug" = ( -/obj/machinery/button/door{ - id = "stationawaygate"; - name = "Gateway Access Shutter Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/crate/internals, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/gateway) -"auh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aui" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/exile, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/gateway) -"auj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms) -"auk" = ( -/obj/machinery/door/airlock{ - name = "Laundry Room" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"aul" = ( -/obj/machinery/computer/shuttle/monastery_shuttle, -/obj/structure/sign/warning/pods{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/dorms) -"aum" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"aur" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"aus" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aut" = ( -/obj/item/clothing/head/collectable/police, -/turf/open/floor/mech_bay_recharge_floor, -/area/maintenance/department/security/brig) -"auu" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/department/security/brig) -"aux" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auz" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/brig) -"auB" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/item/paper_bin, -/obj/item/pen{ - layer = 3.1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"auE" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "innerbrig"; - name = "Brig Interior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 36; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "outerbrig"; - name = "Brig Exterior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 24; - req_access_txt = "63" - }, -/obj/machinery/button/flasher{ - id = "brigentry"; - pixel_x = 6; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"auF" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"auG" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"auH" = ( -/turf/closed/wall, -/area/crew_quarters/heads/captain) -"auI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/heads/captain) -"auJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"auK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgespace"; - name = "bridge external shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgespace"; - name = "bridge external shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/bridge) -"auN" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auP" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auR" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auT" = ( -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"auU" = ( -/obj/structure/closet/emcloset/anchored, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/bridge) -"auV" = ( -/turf/open/floor/plating, -/area/bridge) -"auW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"auX" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"auY" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - req_access_txt = "53" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"auZ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"ava" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Access"; - req_access_txt = "62" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"avb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "stationawaygate"; - name = "Gateway Access Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"avc" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/gateway) -"avd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Dorm3Shutters"; - name = "Dorm Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"ave" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Dorm3Shutters"; - name = "Privacy Shutters Control"; - pixel_y = 26 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"avf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"avg" = ( -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"avh" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avi" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Dormitories Fore" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the monastery."; - name = "Monastery Monitor"; - network = list("monastery"); - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avk" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avl" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 30 - }, -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"avm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"avn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"avp" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - roundstart_template = /datum/map_template/shuttle/labour/box; - width = 9 - }, -/turf/open/space/basic, -/area/space) -"avq" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avr" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Labor Shuttle Dock"; - dir = 8 - }, -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avs" = ( -/obj/structure/bed, -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = -28 - }, -/obj/item/bedsheet/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avt" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avu" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avv" = ( -/obj/structure/bed, -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 - }, -/obj/item/bedsheet/green, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avw" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avx" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avy" = ( -/obj/structure/bed, -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/obj/item/bedsheet/orange, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avz" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avA" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avD" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avF" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/heads/captain) -"avH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/curtain, -/obj/item/soap/deluxe, -/obj/item/bikehorn/rubberducky, -/obj/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"avI" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"avJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"avK" = ( -/obj/structure/toilet/secret/low_loot{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"avL" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/maintenance/fore) -"avM" = ( -/obj/machinery/door/airlock/command{ - name = "Balcony"; - req_access_txt = "20" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"avN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avO" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/camera{ - c_tag = "Bridge MiniSat Access Foyer"; - dir = 1 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avQ" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"avR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avV" = ( -/obj/structure/table/glass, -/obj/item/storage/box/ids{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/PDAs, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avW" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avX" = ( -/obj/structure/table/glass, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avY" = ( -/obj/structure/table/glass, -/obj/item/aicard, -/turf/open/floor/plasteel/dark, -/area/bridge) -"avZ" = ( -/obj/structure/table/glass, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/item/laser_pointer/blue, -/turf/open/floor/plasteel/dark, -/area/bridge) -"awa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"awb" = ( -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"awc" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Bridge External Access"; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"awd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"awe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awh" = ( -/obj/machinery/camera{ - c_tag = "Vault Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awk" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awn" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/crew_quarters/dorms) -"awo" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/dorms) -"awp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/crew_quarters/dorms) -"awq" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/dorms) -"awr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aws" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"awt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"awu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"awv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aww" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"awB" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/crew_quarters/fitness/recreation) -"awC" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/fitness/recreation"; - dir = 1; - name = "Fitness Room APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"awD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"awE" = ( -/obj/item/storage/briefcase, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"awH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awI" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"awJ" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"awK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awL" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awM" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"awN" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awO" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/item/radio, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awP" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/item/reagent_containers/food/snacks/donut, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/structure/table/reinforced, -/obj/item/folder/red{ - layer = 2.9 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awQ" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awR" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awS" = ( -/obj/machinery/door/airlock{ - name = "Private Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/heads/captain) -"awT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - name = "Captain's Office Access"; - req_access_txt = "20" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"awU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"awY" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"awZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axb" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axe" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/computer/rdconsole{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) -"axi" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"axj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"axk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"axl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"axm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs, -/area/hallway/primary/central) -"axn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hallway/primary/central) -"axo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"axp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"axq" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"axr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"axt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"axu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"axv" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/fitness/recreation) -"axw" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"axy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"axz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"axA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"axB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"axC" = ( -/turf/closed/wall, -/area/maintenance/solars/port) -"axE" = ( -/obj/machinery/door/poddoor/preopen{ - id = "prison release"; - name = "prisoner processing blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axF" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axG" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axJ" = ( -/obj/structure/sign/departments/security{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axN" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"axO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"axP" = ( -/obj/structure/closet/secure_closet/captains, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Captain's Quarters" - }, -/obj/item/clothing/suit/armor/riot/knight/blue, -/obj/item/clothing/head/helmet/knight/blue, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"axQ" = ( -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"axR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"axS" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Captain's Office APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/item/kirbyplants/random, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axT" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_y = 30 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axU" = ( -/obj/machinery/computer/card, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axV" = ( -/obj/machinery/computer/communications, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axW" = ( -/obj/structure/filingcabinet/employment, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"axX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"axZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aya" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aye" = ( -/obj/machinery/door/airlock/command{ - name = "External Access"; - req_one_access_txt = "19; 65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ayf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridgespace"; - name = "bridge external shutters" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"ayh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/stairs, -/area/hallway/primary/central) -"ayi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Dorm2Shutters"; - name = "Dorm Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"ayj" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Dorm2Shutters"; - name = "Privacy Shutters Control"; - pixel_y = 26 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayl" = ( -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"aym" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"ayn" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayo" = ( -/obj/structure/table/wood, -/obj/item/storage/dice, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayq" = ( -/obj/structure/table/wood, -/obj/item/storage/backpack, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ayr" = ( -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"ays" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"ayt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Recreation Room" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"ayu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"ayw" = ( -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"ayx" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"ayy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/port) -"ayz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ayA" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "portsolar"; - name = "Port Solar Control" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ayB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ayC" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Port Solar APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ayD" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ayE" = ( -/obj/machinery/button/door{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - pixel_x = -25; - req_access_txt = "2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayF" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayI" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=BrigS2"; - location = "BrigP" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayN" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=BrigP"; - location = "BrigS1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayO" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayQ" = ( -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayR" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayS" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"ayT" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"ayU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"ayV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"ayW" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"ayX" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"ayY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"ayZ" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Captain's Desk"; - req_access_txt = "20" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aza" = ( -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"azb" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"azc" = ( -/obj/item/storage/secure/safe{ - pixel_x = 35; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"azd" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aze" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azg" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azh" = ( -/obj/machinery/light{ - light_color = "#e8eaff" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azk" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - name = "AI Upload turret control"; - pixel_y = -25 - }, -/obj/machinery/camera{ - c_tag = "Bridge Central"; - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/bridge"; - dir = 4; - name = "Bridge APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azp" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Bridge External Access"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/bridge) -"azq" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"azr" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azs" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azu" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/dorms) -"azv" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azx" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azy" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_x = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"azA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"azB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Recreation Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azE" = ( -/obj/structure/table, -/obj/item/paper/fluff/holodeck/disclaimer, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azF" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Holodeck"; - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"azG" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"azH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/port) -"azI" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space, -/area/solar/port) -"azJ" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/solar/port) -"azK" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"azL" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/port) -"azN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azQ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azS" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azY" = ( -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"azZ" = ( -/mob/living/simple_animal/bot/secbot/beepsky{ - name = "Officer Beepsky" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aAa" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/potato{ - name = "\improper Beepsky's emergency battery" - }, -/obj/item/paper/fluff/jobs/security/beepsky_mom, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aAb" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Fore Primary Hallway APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAd" = ( -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAe" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAf" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Port"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAg" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAk" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Tool"; - location = "BrigS2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAn" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Starboard"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAo" = ( -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAp" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"aAq" = ( -/obj/structure/table/wood, -/obj/item/storage/box/matches, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/reagent_containers/food/drinks/flask/gold, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"aAr" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"aAs" = ( -/obj/structure/table/wood, -/obj/item/kitchen/fork, -/obj/item/card/id/captains_spare, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/captain) -"aAt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aAu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAv" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAw" = ( -/obj/structure/table/wood, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAx" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAy" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aAz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Entrance Lockdown"; - pixel_x = -24; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aAA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aAB" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aAC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access_txt = "16" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aAD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aAE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Entrance Lockdown"; - pixel_x = 24; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aAF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"aAG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"aAH" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"aAI" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAM" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aAN" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"aAO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aAP" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/comfy{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"aAQ" = ( -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"aAS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aAT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aAU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aAV" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solar/port) -"aAW" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/multitool, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aAX" = ( -/obj/structure/chair/stool, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aAY" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aBa" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"aBc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aBd" = ( -/turf/closed/wall, -/area/security/detectives_office) -"aBe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "datboidetective"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aBf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"aBg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aBh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aBi" = ( -/turf/closed/wall, -/area/storage/primary) -"aBj" = ( -/turf/closed/wall/r_wall, -/area/storage/primary) -"aBk" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/vending/wardrobe/cap_wardrobe, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBm" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBn" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBo" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBp" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aBq" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aBr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aBs" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBt" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBx" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/ai_monitored/turret_protected/ai_upload"; - dir = 1; - name = "Upload APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aBy" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aBz" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/item/storage/secure/safe{ - pixel_x = -22; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBA" = ( -/obj/machinery/computer/security/telescreen/vault{ - pixel_y = 30 - }, -/obj/machinery/computer/security/mining, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBB" = ( -/obj/machinery/computer/cargo/request, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBC" = ( -/obj/structure/closet/secure_closet/hop, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the monastery."; - name = "Monastery Monitor"; - network = list("monastery"); - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBD" = ( -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office" - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBE" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = 30 - }, -/obj/machinery/pdapainter{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBF" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/bed/dogbed/ian, -/mob/living/simple_animal/pet/dog/corgi/Ian, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBG" = ( -/obj/machinery/vending/cart{ - req_access_txt = "57" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aBH" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Central Hall APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBK" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/crowbar, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Dorm1Shutters"; - name = "Dorm Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"aBM" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Dorm1Shutters"; - name = "Privacy Shutters Control"; - pixel_y = 26 - }, -/obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aBN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aBO" = ( -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aBP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aBQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aBR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aBS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aBT" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aBU" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aBW" = ( -/obj/structure/closet/wardrobe/grey, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aBX" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/shoes/jackboots, -/obj/item/storage/backpack, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/fitness/recreation) -"aBY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aBZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"aCa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/port) -"aCc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aCd" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aCe" = ( -/obj/structure/filingcabinet/employment, -/turf/open/floor/wood, -/area/lawoffice) -"aCf" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/turf/open/floor/wood, -/area/lawoffice) -"aCg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aCh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aCi" = ( -/obj/structure/table/wood, -/obj/item/kirbyplants{ - icon_state = "plant-18"; - pixel_y = 12 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Detective's office"; - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCk" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCm" = ( -/obj/item/storage/briefcase, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCn" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "datboidetective"; - name = "Privacy Shutters"; - pixel_x = 2; - pixel_y = 26 - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 27 - }, -/obj/structure/filingcabinet/security, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCo" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/hand_labeler, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aCq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aCr" = ( -/obj/machinery/vending/assist, -/obj/structure/sign/poster/official/pda_ad{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCs" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCt" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/analyzer, -/obj/machinery/requests_console{ - department = "Tool Storage"; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCu" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCv" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/assembly/igniter, -/obj/machinery/camera{ - c_tag = "Primary Tool Storage" - }, -/obj/item/assembly/voice, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCw" = ( -/obj/structure/table, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/multitool, -/obj/item/multitool, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/flashlight, -/obj/item/electronics/airlock, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCx" = ( -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/obj/machinery/disposal/deliveryChute{ - name = "Crate Disposal Chute"; - pixel_y = 6 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright{ - name = "Crate Disposal Chute" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aCy" = ( -/obj/structure/displaycase/captain, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCz" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aCD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"aCE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aCF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aCG" = ( -/obj/structure/table, -/obj/item/aiModule/supplied/quarantine, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Port"; - dir = 4; - network = list("aiupload") - }, -/obj/item/aiModule/reset, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCK" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCM" = ( -/obj/structure/table, -/obj/item/aiModule/supplied/freeform, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Starboard"; - dir = 8; - network = list("aiupload") - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aCN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aCO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aCP" = ( -/obj/structure/table/wood, -/obj/item/pen{ - layer = 4 - }, -/obj/machinery/keycard_auth{ - pixel_x = -26; - pixel_y = 6 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCQ" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCR" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCS" = ( -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCT" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access_txt = "57" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aCW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aCX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aCY" = ( -/obj/machinery/holopad, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aCZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aDa" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aDb" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aDc" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aDd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/dorms) -"aDe" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/dorms) -"aDf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aDg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aDh" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Dormitories Aft"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aDi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/sign/departments/restroom{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white/corner, -/area/crew_quarters/dorms) -"aDj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white/side, -/area/crew_quarters/dorms) -"aDk" = ( -/obj/machinery/vr_sleeper{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/crew_quarters/dorms) -"aDl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aDm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aDo" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDq" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDr" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDw" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Tool Storage APC"; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/storage/primary) -"aDx" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aDy" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/storage/primary) -"aDz" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/storage/primary) -"aDA" = ( -/turf/open/floor/plasteel, -/area/storage/primary) -"aDB" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aDC" = ( -/obj/structure/table/wood, -/obj/item/storage/lockbox/medal, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aDD" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aDE" = ( -/obj/structure/chair/comfy/brown, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aDF" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aDG" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aDH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access_txt = "20" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aDI" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aDJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aDK" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aDL" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aDM" = ( -/obj/machinery/holopad, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Center"; - dir = 1; - network = list("aiupload") - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -28 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aDN" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/obj/structure/sign/plaques/kiddie{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aDO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aDP" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aDQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access_txt = "57" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"aDR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 15 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aDS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aDT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aDU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aDV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aDW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aDX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aDY" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Head of Personnel APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aDZ" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEb" = ( -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aEd" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/restrooms) -"aEe" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aEf" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aEg" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aEh" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aEi" = ( -/obj/effect/landmark/blobstart, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) -"aEj" = ( -/turf/closed/wall, -/area/maintenance/department/cargo) -"aEk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aEl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aEm" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEn" = ( -/obj/structure/table/wood, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEo" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes, -/obj/item/lighter, -/obj/item/clothing/glasses/hud/security/sunglasses, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEp" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEq" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 7; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aEr" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Detective's Office APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aEs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEt" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -2 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/storage/primary) -"aEu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/storage/primary) -"aEv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/storage/primary) -"aEw" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aEx" = ( -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aEy" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aEz" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aEA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aEB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aEC" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Bridge Port Entrance"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aED" = ( -/obj/structure/table, -/obj/item/aiModule/core/full/asimov, -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/item/aiModule/core/freeformcore, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/effect/spawner/lootdrop/aimodule_neutral, -/obj/item/aiModule/core/full/custom, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aEE" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aEF" = ( -/obj/machinery/computer/upload/ai{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aEG" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aEH" = ( -/obj/machinery/computer/upload/borg{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aEI" = ( -/obj/structure/table, -/obj/item/aiModule/supplied/oxygen, -/obj/item/aiModule/zeroth/oneHuman, -/obj/machinery/door/window{ - dir = 8; - name = "High-Risk Modules"; - req_access_txt = "20" - }, -/obj/item/aiModule/reset/purge, -/obj/effect/spawner/lootdrop/aimodule_harmful, -/obj/item/aiModule/supplied/protectStation, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aEJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Bridge Starboard Entrance"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aEK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aEL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aEM" = ( -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aEN" = ( -/obj/structure/table/wood, -/obj/item/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/silver_ids, -/obj/item/storage/box/ids, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"aEO" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aEP" = ( -/obj/machinery/computer/card{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aEQ" = ( -/obj/structure/chair/office/dark, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 38; - pixel_y = -25 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 25; - pixel_y = -26; - req_access_txt = "28" - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = 25; - pixel_y = -36; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = 38; - pixel_y = -35 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aER" = ( -/obj/structure/table/wood, -/obj/item/stamp/hop{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/hop) -"aES" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Vault"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aET" = ( -/turf/closed/wall, -/area/storage/emergency/starboard) -"aEU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/item/storage/toolbox, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aEW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aEZ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFb" = ( -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFc" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFe" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFf" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFg" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFi" = ( -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFj" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Entrance"; - network = list("minisat") - }, -/turf/open/space, -/area/space/nearstation) -"aFk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/spawner/lootdrop/minor/bowler_or_that, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"aFm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFn" = ( -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFo" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/obj/effect/landmark/start/detective, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFr" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Entrance"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aFs" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/electronics/apc, -/obj/item/t_scanner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/storage/primary) -"aFt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aFu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"aFv" = ( -/obj/structure/table, -/obj/item/weldingtool, -/obj/item/crowbar, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aFw" = ( -/obj/structure/table/wood, -/obj/item/camera, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aFx" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/crew_quarters/heads/captain) -"aFy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aFz" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aFA" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"aFB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access_txt = "57" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Reception Window" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) -"aFC" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aFD" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/taperecorder, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aFE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aFF" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Starboard Emergency Storage APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aFG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFH" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFK" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFM" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aFN" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFO" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFP" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFQ" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/food/condiment/rice, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aFU" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"aFV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Detective Maintenance"; - req_access_txt = "4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aFW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFX" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aFY" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Detective's Office"; - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aGa" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aGb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGe" = ( -/obj/structure/rack, -/obj/item/wirecutters, -/obj/item/flashlight, -/obj/item/gps, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGf" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGg" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/assembly/timer, -/obj/item/radio, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGh" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGi" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGj" = ( -/obj/structure/disposalpipe/junction/flip, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGk" = ( -/obj/machinery/vending/boozeomat/pubby_captain, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aGl" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aGm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/arcade{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"aGn" = ( -/obj/item/kirbyplants/photosynthetic{ - layer = 3.1 - }, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aGo" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGp" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - icon_state = "nanotrasen_sign2"; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGq" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - icon_state = "nanotrasen_sign3"; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGr" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - icon_state = "nanotrasen_sign4"; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGs" = ( -/obj/structure/lattice, -/obj/structure/sign/logo{ - icon_state = "nanotrasen_sign5"; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"aGt" = ( -/obj/machinery/vending/cola, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGu" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGw" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGx" = ( -/obj/machinery/flasher{ - id = "hopflash"; - pixel_x = 28; - pixel_y = -28 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGy" = ( -/obj/structure/table, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGz" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aGB" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aGC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGF" = ( -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGH" = ( -/obj/machinery/camera{ - c_tag = "Dormitory Toilets"; - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGI" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGJ" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aGK" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/cookie{ - desc = "It has a distinctly eldritch taste to it."; - name = "grandma's cookie" - }, -/obj/item/cigbutt, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGL" = ( -/obj/structure/chair/stool, -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGM" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGN" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGO" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGP" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aGU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGV" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGX" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "assistantshutters"; - name = "storage shutters" - }, -/turf/open/floor/plating, -/area/storage/primary) -"aGY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "assistantshutters"; - name = "storage shutters" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"aGZ" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "assistantshutters"; - name = "storage shutters" - }, -/turf/open/floor/plating, -/area/storage/primary) -"aHb" = ( -/obj/machinery/computer/arcade, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aHc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aHd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aHe" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aHf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aHg" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aHh" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aHj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aHk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aHl" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHn" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Starboard Emergency Storage" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"aHo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHp" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHq" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHr" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/soap/nanotrasen, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aHs" = ( -/obj/structure/closet/crate, -/obj/item/cultivator, -/obj/item/shovel/spade, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/seeds/wheat/rice, -/obj/item/seeds/replicapod, -/obj/item/seeds/carrot, -/obj/item/seeds/tomato, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aHt" = ( -/obj/effect/decal/cleanable/egg_smudge, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aHu" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aHz" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"aHA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"aHC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aHE" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorms"; - location = "Tool" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHK" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHR" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHU" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aHZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIb" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aId" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIe" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"aIi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIj" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/sign/departments/restroom{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/central) -"aIk" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Dormitory Bathrooms APC"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aIl" = ( -/obj/structure/toilet/secret/low_loot{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aIp" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aIq" = ( -/obj/structure/closet/crate/coffin, -/obj/item/toy/figure/lawyer, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aIr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/solar/port) -"aIC" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aIH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aIL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorms"; - location = "Tool" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIN" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIT" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIV" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIX" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/observer_start, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIY" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aIZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJa" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJb" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Robo"; - location = "HoP" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJi" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HoP"; - location = "Dorms" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/hallway/primary/central) -"aJn" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aJo" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/table, -/obj/structure/bedsheetbin/towel, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aJp" = ( -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aJq" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"aJr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/cargo) -"aJs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aJt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"aJv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aJw" = ( -/obj/structure/closet/crate/coffin, -/obj/item/toy/figure/chaplain, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aJD" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge Fore" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aJE" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aJF" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/hallway/secondary/exit/departure_lounge"; - dir = 1; - name = "Departure Lounge APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aJG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = -24 - }, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -40 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJH" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJM" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Bathroom"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/restroom{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJT" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJV" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJW" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway EVA"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJX" = ( -/obj/structure/sign/directions/security{ - dir = 8; - pixel_x = -32; - pixel_y = -24 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/sign/directions/science{ - pixel_x = -32; - pixel_y = -40 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aJZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKe" = ( -/obj/machinery/camera{ - c_tag = "Dormitories Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKg" = ( -/obj/item/kirbyplants{ - icon_state = "plant-04" - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/primary/central) -"aKh" = ( -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aKi" = ( -/obj/machinery/door/airlock{ - name = "Unit B" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aKj" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Dormitory Cyborg Recharging Station" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"aKk" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKo" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"aKp" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKq" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKr" = ( -/obj/structure/closet/crate/coffin, -/obj/item/toy/figure/curator, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aKy" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"aKz" = ( -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"aKA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aKB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"aKD" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aKE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aKG" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aKH" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aKI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aKJ" = ( -/turf/closed/wall, -/area/storage/art) -"aKK" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/storage/art) -"aKL" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/storage/art) -"aKM" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/cafeteria/lunchroom) -"aKN" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/cafeteria/lunchroom) -"aKO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Lunchroom" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/cafeteria/lunchroom) -"aKP" = ( -/turf/closed/wall, -/area/crew_quarters/cafeteria/lunchroom) -"aKQ" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/auxiliary) -"aKR" = ( -/obj/machinery/door/airlock{ - id_tag = "Potty1"; - name = "Unisex Restrooms" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aKS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/crew_quarters/toilet/auxiliary) -"aKT" = ( -/turf/closed/wall, -/area/maintenance/department/crew_quarters/bar) -"aKU" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aKV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aKY" = ( -/turf/closed/wall/r_wall, -/area/storage/eva) -"aKZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/eva) -"aLa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "EVA Storage Shutters" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/teleporter) -"aLd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/command/glass{ - name = "Teleporter"; - req_access_txt = "17" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aLe" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"aLf" = ( -/turf/closed/wall, -/area/quartermaster/office) -"aLg" = ( -/turf/closed/wall, -/area/quartermaster/storage) -"aLh" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Warehouse Maintenance"; - req_access_txt = "31" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLj" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLk" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLl" = ( -/obj/item/storage/box/mousetraps, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aLm" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"aLn" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal bay door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aLo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aLu" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aLv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aLw" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/art) -"aLx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/easel, -/obj/item/canvas/twentythreeXnineteen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aLy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aLz" = ( -/obj/machinery/photocopier, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aLA" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/friedegg, -/obj/item/kitchen/fork, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aLB" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aLC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aLD" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/vending/cola, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aLE" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aLF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aLG" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/button/door{ - id = "Potty1"; - name = "Bathroom Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 4; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 36; - pixel_y = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aLH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aLI" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aLK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aLL" = ( -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aLQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/button/door{ - id = "evashutter"; - name = "EVA Shutters Control"; - pixel_x = -24; - req_access_txt = "18" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aLR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aLU" = ( -/obj/structure/closet/crate/rcd, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aLV" = ( -/turf/closed/wall, -/area/storage/eva) -"aLW" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Teleporter APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aLX" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aLY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aLZ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aMa" = ( -/obj/structure/closet/crate, -/obj/machinery/button/door{ - id = "teleshutter"; - name = "Teleporter Shutters Control"; - pixel_x = 25; - pixel_y = -5; - req_access_txt = "17" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/teleporter) -"aMb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMd" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = -32 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aMe" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cargo Security Post" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aMf" = ( -/obj/machinery/computer/secure_data, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aMg" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMh" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMi" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMj" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMk" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMl" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMm" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMn" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aMo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/quartermaster/warehouse) -"aMp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMr" = ( -/obj/structure/closet/crate, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMt" = ( -/obj/structure/closet/cardboard, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cargo Warehouse" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMu" = ( -/obj/item/cigbutt/cigarbutt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/warehouse"; - dir = 4; - name = "Cargo Warehouse APC"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aMw" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMx" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMy" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMz" = ( -/obj/structure/grille/broken, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/crowbar, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMA" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMB" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aMD" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aME" = ( -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aMF" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "garbagestacked"; - name = "disposal conveyor" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aMG" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aMH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aML" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aMR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aMU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/storage/art) -"aMV" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/storage/toolbox/artistic{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/toolbox/artistic{ - pixel_x = -3 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aMW" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aMX" = ( -/obj/structure/table, -/obj/item/airlock_painter, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Art Storage APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aMY" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aMZ" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Lunchroom"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aNa" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - name = "Cafeteria APC"; - pixel_y = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aNb" = ( -/obj/machinery/vending/sustenance{ - contraband = list(/obj/item/kitchen/knife = 6, /obj/item/reagent_containers/food/drinks/coffee = 12); - desc = "A vending machine which vends food."; - product_ads = "Sufficiently healthy." - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/cafeteria/lunchroom) -"aNc" = ( -/obj/structure/toilet/secret/low_loot{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aNd" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aNe" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/five_k{ - name = "Auxiliary Restrooms APC"; - pixel_y = -24 - }, -/obj/item/soap/nanotrasen, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/auxiliary) -"aNf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aNg" = ( -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aNh" = ( -/obj/item/extinguisher, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aNi" = ( -/obj/structure/grille/broken, -/obj/item/crowbar, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aNj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aNm" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aNp" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aNq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/storage/eva) -"aNr" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aNs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/storage/eva) -"aNt" = ( -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide/eva, -/obj/item/tank/jetpack/carbondioxide/eva{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aNu" = ( -/obj/structure/closet/crate, -/obj/item/melee/flyswatter, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/teleporter) -"aNv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aNw" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/teleporter) -"aNx" = ( -/turf/open/floor/plasteel, -/area/teleporter) -"aNy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/teleporter) -"aNz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/teleporter) -"aNA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aNB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aNC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aND" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aNE" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/supply, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aNF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aNH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNJ" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNK" = ( -/obj/structure/table, -/obj/item/destTagger, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNL" = ( -/obj/item/stack/wrapping_paper{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/stack/packageWrap{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNM" = ( -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/hand_labeler, -/obj/item/hand_labeler, -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aNN" = ( -/obj/structure/closet/crate/freezer, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aNO" = ( -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aNP" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aNQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aNR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aNT" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "trash" - }, -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -28 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aNU" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 8; - output_dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aNV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbagestacked" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aNX" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aNY" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aOf" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"aOg" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"aOh" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"aOk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aOm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/wrench, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aOs" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"aOt" = ( -/obj/structure/table, -/obj/item/instrument/glockenspiel{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aOu" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Art Storage"; - dir = 1 - }, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aOv" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 20; - layer = 3.1 - }, -/obj/item/stack/sheet/glass{ - amount = 20; - layer = 3.2 - }, -/obj/item/stack/rods{ - amount = 20; - layer = 3.3 - }, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/canvas/nineteenXnineteen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/art) -"aOw" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aOx" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aOy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aOz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aOA" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aOB" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "EVA Storage"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aOC" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel, -/area/storage/eva) -"aOD" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aOE" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Teleporter"; - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aOF" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/teleporter) -"aOG" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/teleporter) -"aOH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/teleporter) -"aOI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/teleporter) -"aOJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Shutters" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/teleporter) -"aOK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aOL" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aOM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aON" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aOO" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aOP" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aOQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aOR" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Security Post"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aOS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aOT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aOU" = ( -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aOV" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aOW" = ( -/obj/machinery/door/window/eastleft{ - dir = 8; - icon_state = "right"; - name = "Mail"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aOX" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aOY" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aOZ" = ( -/obj/item/stack/sheet/cardboard, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aPa" = ( -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aPb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aPc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aPd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aPf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/shard, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aPg" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aPi" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aPn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aPo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/exit/departure_lounge) -"aPq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge Starboard"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aPt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aPv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aPw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aPx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPy" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aPz" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aPA" = ( -/obj/item/trash/cheesie, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPB" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPC" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/spawner/lootdrop/gloves, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPD" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Bar Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPE" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"aPF" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aPH" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aPI" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aPJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aPK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aPL" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aPM" = ( -/obj/structure/table, -/obj/item/beacon, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPN" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPO" = ( -/obj/machinery/teleport/station, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPP" = ( -/obj/machinery/teleport/hub, -/obj/machinery/light, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPQ" = ( -/obj/structure/closet/crate, -/obj/item/crowbar, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aPR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aPS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aPT" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "Security Post - Cargo APC"; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aPU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aPV" = ( -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aPW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"aPX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aPY" = ( -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aPZ" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aQa" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aQb" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Cargo Mailroom"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aQc" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQd" = ( -/obj/item/flashlight, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQe" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQf" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQg" = ( -/obj/structure/closet/crate/medical, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aQj" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aQk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"aQn" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "garbage"; - name = "disposal conveyor" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aQo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aQp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aQr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aQs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aQt" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"aQu" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aQv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aQw" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aQx" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aQz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aQB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aQC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aQD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aQE" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQF" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aQI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aQJ" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"aQK" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQL" = ( -/obj/structure/grille/broken, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQM" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aQR" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQS" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aQT" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/crew_quarters/bar) -"aQU" = ( -/obj/machinery/vending/coffee, -/obj/machinery/camera{ - c_tag = "Bar Backroom" - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aQV" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/obj/item/stack/cable_coil, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aQW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/broken_bottle, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aQY" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aQZ" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/crowbar, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "EVA Storage APC"; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aRa" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/storage/eva) -"aRb" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/storage/eva) -"aRc" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/eva) -"aRd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aRe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/departments/cargo{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aRf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aRg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Security Post"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aRh" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRi" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRj" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/power/apc/highcap/fifteen_k{ - dir = 4; - name = "Delivery Office APC"; - pixel_x = 28 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aRm" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/snacks/donut, -/obj/item/reagent_containers/food/snacks/donut, -/obj/item/reagent_containers/food/snacks/donut, -/obj/item/reagent_containers/food/snacks/donut, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aRn" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aRo" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aRp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "warehouse shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aRq" = ( -/obj/structure/closet/crate/internals, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"aRs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aRt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"aRu" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRv" = ( -/obj/item/trash/can, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aRB" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aRC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aRD" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aRE" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aRF" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aRG" = ( -/obj/structure/rack, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/assault_pod/mining, -/obj/machinery/camera{ - c_tag = "Auxillary Base Construction"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/auxbase{ - dir = 8; - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aRH" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall, -/area/hallway/primary/central) -"aRI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aRJ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRK" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRL" = ( -/turf/closed/wall, -/area/hydroponics) -"aRM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRN" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aRO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aRP" = ( -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"aRQ" = ( -/obj/item/gun/ballistic/revolver/doublebarrel{ - pixel_y = 11 - }, -/obj/structure/table/wood, -/obj/item/coin/silver, -/obj/item/stack/spacecash/c10, -/obj/item/stack/spacecash/c100, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aRR" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/item/clothing/under/rank/civilian/janitor/maid, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/crew_quarters/bar) -"aRS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aRT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aRU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Storage Maintenance"; - req_access_txt = "25" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "EVA Maintenance"; - req_access_txt = "18" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRY" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aRZ" = ( -/obj/item/trash/tray, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSa" = ( -/obj/structure/closet/secure_closet/freezer/cream_pie, -/obj/item/grown/bananapeel, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSb" = ( -/obj/structure/closet/secure_closet/freezer/cream_pie, -/obj/item/seeds/banana, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aSd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aSe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aSf" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aSg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom"; - req_one_access_txt = "48;50" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"aSh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"aSi" = ( -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aSj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aSk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aSl" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Cargo Maintenance APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aSm" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aSn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aSo" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Disposal APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aSu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/item/wirecutters, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"aSv" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aSw" = ( -/obj/item/statuebust, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aSx" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aSz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSA" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSE" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics Storage" - }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSF" = ( -/obj/machinery/chem_master/condimaster, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSG" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/reagent_containers/glass/bottle/mutagen, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel, -/area/hydroponics) -"aSH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Kitchen Maintenance"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aSI" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo"; - pixel_x = -4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aSJ" = ( -/obj/machinery/gibber, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aSK" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aSL" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Kitchen" - }, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Kitchen Delivery"; - req_access_txt = "28" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"aSM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/bar) -"aSN" = ( -/obj/item/assembly/mousetrap, -/obj/item/storage/box/mousetraps, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/crew_quarters/bar) -"aSO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aSP" = ( -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aSQ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/storage/box/beanbag, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aSR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/item/weldingtool, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSS" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aST" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSV" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aSX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aSY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aSZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTa" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"aTf" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aTi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTm" = ( -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aTn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTp" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTq" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTr" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTs" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aTu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aTv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aTw" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aTx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aTy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aTz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aTA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aTB" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aTC" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) -"aTD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space, -/area/solar/starboard) -"aTE" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) -"aTH" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 4; - height = 15; - id = "emergency_home"; - name = "PubbyStation emergency evac bay"; - width = 20 - }, -/turf/open/space/basic, -/area/space) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aTK" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aTL" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aTM" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aTO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Escape"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aTP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aTQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTU" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTW" = ( -/obj/structure/table, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_y = 3 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/watertank, -/turf/open/floor/plasteel, -/area/hydroponics) -"aTX" = ( -/obj/structure/kitchenspike, -/obj/item/assembly/mousetrap, -/obj/item/reagent_containers/food/snacks/deadmouse, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aTY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aTZ" = ( -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aUa" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/item/crowbar, -/obj/item/wrench, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aUb" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/bar) -"aUc" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aUd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/wood, -/area/crew_quarters/bar) -"aUe" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/crew_quarters/bar) -"aUf" = ( -/turf/closed/wall, -/area/crew_quarters/theatre) -"aUg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bar Maintenance"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aUi" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Cargo"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUl" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUm" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUo" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay"; - req_one_access_txt = "31;48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUq" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aUt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUv" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUw" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aUy" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aUz" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aUA" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"aUB" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aUC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aUD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard) -"aUG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aUH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aUI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aUJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"aUK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUL" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aUO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aUP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aUQ" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"aUR" = ( -/obj/machinery/door/window/eastright{ - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 1; - freq = 1400; - location = "Hydroponics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUS" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/wirecutters, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUT" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUU" = ( -/obj/machinery/power/apc{ - name = "Hydroponics APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUW" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel, -/area/hydroponics) -"aUX" = ( -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aUY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aUZ" = ( -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVa" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVc" = ( -/obj/machinery/door/window/southleft{ - name = "Bar Delivery"; - req_access_txt = "25" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Bar" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aVd" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVg" = ( -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVh" = ( -/obj/structure/table/glass, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/bottle/patron{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/bottle/cognac{ - pixel_x = -10; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/grappa{ - pixel_x = 10; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVi" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/bottle/hcider{ - layer = 3.1; - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - layer = 3.1; - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - layer = 3.2; - pixel_x = -15; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ - layer = 3.1; - pixel_x = 13; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/tequila{ - layer = 3.2; - pixel_x = 13; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = 1; - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_x = -10; - pixel_y = 15 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/button/door{ - id = "barshutters"; - name = "Bar Lockdown"; - pixel_x = 28; - req_access_txt = "25" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aVk" = ( -/obj/structure/table/wood, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/instrument/accordion{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aVl" = ( -/obj/structure/dresser, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/clown{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aVm" = ( -/obj/machinery/vending/autodrobe, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aVn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Theatre Maintenance"; - req_access_txt = "46" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"aVo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aVp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVq" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVs" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/conveyor{ - dir = 4; - id = "cargodeliver" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVv" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/conveyor_switch{ - id = "cargodeliver" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aVw" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVy" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVz" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVB" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad" - }, -/obj/machinery/camera{ - c_tag = "Cargo Supply Dock"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aVE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 8; - light_color = "#d8b1b1" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aVG" = ( -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aVH" = ( -/obj/structure/closet/l3closet/scientist, -/obj/item/book/manual/wiki/chemistry, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aVI" = ( -/obj/structure/closet, -/obj/item/canvas/twentythreeXnineteen, -/obj/item/canvas/nineteenXnineteen, -/obj/item/canvas/twentythreeXtwentythree, -/obj/item/storage/crayons, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aVM" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aVN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aVO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aVP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aVQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aVR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aVS" = ( -/turf/closed/wall, -/area/janitor) -"aVT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/janitor) -"aVU" = ( -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Janitor Delivery"; - req_access_txt = "26" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Janitor" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aVV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"aVW" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVX" = ( -/obj/machinery/power/apc{ - name = "Kitchen APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aVZ" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/item/reagent_containers/food/snacks/grown/potato, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aWa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"aWb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWd" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/mob/living/carbon/monkey/punpun, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWe" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/camera{ - c_tag = "Bar Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWm" = ( -/obj/structure/disposalpipe/segment, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWn" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Theatre APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/mime, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWr" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = 24 - }, -/obj/structure/mirror{ - pixel_x = 28; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aWs" = ( -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aWt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aWu" = ( -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aWv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/mineral/ore_redemption{ - input_dir = 4; - output_dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) -"aWw" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aWx" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "QM #2" - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay"; - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWz" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWA" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aWB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aWE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aWF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aWI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge Hallway"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aWJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aWK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"aWM" = ( -/obj/machinery/washing_machine, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aWN" = ( -/obj/machinery/camera{ - c_tag = "Custodial Quarters" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aWO" = ( -/obj/structure/bed, -/obj/effect/landmark/start/janitor, -/obj/item/bedsheet/purple, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aWP" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aWQ" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aWR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aWS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 21 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aWT" = ( -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 30 - }, -/obj/structure/sink/kitchen{ - name = "utility sink"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aWU" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aWV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aWW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aWX" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aWY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXd" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Bar APC"; - pixel_x = 27 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXh" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aXk" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Theatre Storage"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXm" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 18 - }, -/obj/machinery/requests_console{ - department = "Theatre"; - name = "theatre RC"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/clown, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXo" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/cardboard_cutout, -/obj/structure/mirror{ - pixel_x = 28; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/theatre) -"aXp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/theatre) -"aXq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXr" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/cargo{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aXt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aXu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/dark, -/area/quartermaster/office) -"aXv" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Cargo Foyer"; - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aXw" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "QM #3" - }, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aXx" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aXy" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aXz" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aXA" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"aXB" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall, -/area/security/checkpoint/customs) -"aXC" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aXF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aXG" = ( -/obj/structure/table, -/obj/effect/holodeck_effect/cards{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"aXH" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/customs) -"aXI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "papersplease"; - name = "security shutters" - }, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"aXJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright{ - dir = 2; - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/machinery/door/poddoor/preopen{ - id = "papersplease"; - name = "privacy shutters" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aXK" = ( -/turf/closed/wall, -/area/security/checkpoint/customs) -"aXL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/janitor) -"aXN" = ( -/obj/structure/bedsheetbin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aXO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aXP" = ( -/obj/structure/table, -/obj/item/clothing/under/costume/maid, -/obj/item/key/janitor, -/obj/item/grenade/clusterbuster/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aXQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXR" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXS" = ( -/turf/open/floor/plasteel, -/area/hydroponics) -"aXT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hydroponics) -"aXU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXW" = ( -/obj/machinery/plantgenes{ - pixel_y = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXX" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXY" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/sign/departments/botany{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aXZ" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYa" = ( -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/crew_quarters/kitchen) -"aYb" = ( -/obj/machinery/door/airlock{ - name = "Bar Access"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"aYd" = ( -/obj/machinery/door/airlock{ - name = "Service Access"; - req_one_access_txt = "25; 26; 28; 35" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYe" = ( -/obj/structure/table/reinforced, -/obj/item/kirbyplants{ - icon_state = "plant-18"; - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYf" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/barman_recipes, -/obj/item/reagent_containers/rag, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYg" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYh" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/instrument/guitar, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYi" = ( -/obj/structure/table/reinforced, -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants{ - icon_state = "plant-18"; - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYj" = ( -/obj/machinery/door/airlock{ - name = "Theatre Storage"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aYk" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aYl" = ( -/obj/structure/table/wood, -/obj/item/soap, -/obj/structure/table/wood, -/obj/item/bikehorn, -/obj/item/toy/cattoy, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aYm" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/item/lipstick/random, -/obj/item/clothing/gloves/color/rainbow, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/theatre) -"aYn" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -32 - }, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYo" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYp" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYq" = ( -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYr" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aYv" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "QM #4" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYB" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = -8 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aYC" = ( -/obj/structure/grille/broken, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aYD" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/box/matches, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aYE" = ( -/obj/structure/table, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aYF" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal{ - amount = 10 - }, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/shard{ - icon_state = "small" - }, -/obj/item/light/bulb, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aYG" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"aYH" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aYI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aYJ" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aYK" = ( -/obj/structure/closet/secure_closet/security, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aYL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Custodial Quarters"; - req_access_txt = "26" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/janitor) -"aYN" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYQ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aYR" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYS" = ( -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYT" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYU" = ( -/obj/machinery/processor, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aYX" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "kitchen shutters" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"aYY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aYZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZg" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aZh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZj" = ( -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/obj/machinery/computer/bounty{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZk" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"aZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZq" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 3 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"aZv" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aZw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"aZx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aZy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZD" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aZF" = ( -/obj/machinery/computer/card{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security Checkpoint"; - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZJ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZK" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aZL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/janitor) -"aZP" = ( -/turf/open/floor/plasteel, -/area/janitor) -"aZQ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/power/apc{ - dir = 1; - name = "Custodial Closet APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/janitor) -"aZR" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hydroponics) -"aZT" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZU" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"aZV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aZZ" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"baa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bab" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bac" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bad" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "kitchen shutters" - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"bae" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bag" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bah" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"ban" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 1 - }, -/obj/structure/chair/wood/normal, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bao" = ( -/obj/machinery/computer/slot_machine, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bap" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"baq" = ( -/obj/machinery/computer/arcade, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bar" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bas" = ( -/obj/structure/table, -/obj/item/pen, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bat" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bau" = ( -/obj/machinery/photocopier, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Cargo Office"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bav" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/office"; - name = "Cargo Office APC"; - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"baw" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bax" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"baz" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"baA" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "Cargo Bay APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baE" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"baG" = ( -/turf/closed/wall, -/area/maintenance/solars/starboard) -"baH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Bridge External Access"; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"baI" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) -"baJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baK" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baL" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baQ" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "papersplease"; - name = "Shutters Control Button"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "1" - }, -/obj/machinery/button/flasher{ - id = "brigentry"; - pixel_x = -26; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"baR" = ( -/obj/item/pen, -/obj/structure/table, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"baS" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"baT" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"baU" = ( -/obj/machinery/power/apc{ - name = "Security Checkpoint APC"; - pixel_x = 1; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"baV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baW" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "jangarage"; - name = "Custodial Closet Shutters Control"; - pixel_x = 25; - req_access_txt = "26" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baX" = ( -/obj/vehicle/ridden/janicart, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "jangarage"; - name = "Custodial Closet Shutters Control"; - pixel_x = -25; - req_access_txt = "26" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/janitor) -"baY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/janitor) -"baZ" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_x = 32 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bba" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hydroponics) -"bbb" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bbc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bbd" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hydroponics) -"bbg" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bbh" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/peppermill, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bbi" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bbl" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenshutters"; - name = "kitchen shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"bbm" = ( -/obj/structure/chair/stool/bar, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bbo" = ( -/obj/item/clothing/head/hardhat/cakehat, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbp" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bbr" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbs" = ( -/obj/item/cane, -/obj/item/clothing/head/that, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/clothing/under/dress/sundress, -/obj/item/clothing/under/suit/waiter, -/obj/item/clothing/under/dress/blacktango, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bbu" = ( -/obj/structure/grille, -/obj/structure/window/fulltile, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"bbv" = ( -/obj/structure/chair/stool, -/obj/item/trash/can, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbw" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/stool, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bbx" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bby" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbA" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Office Maintenance"; - req_access_txt = "50" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/office) -"bbB" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/item/clothing/under/misc/mailman, -/obj/item/clothing/head/mailman, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bbC" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/hand_labeler, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bbD" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bbE" = ( -/turf/closed/wall, -/area/quartermaster/qm) -"bbF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bbG" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bbH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bbI" = ( -/turf/closed/wall, -/area/quartermaster/miningdock) -"bbJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bbK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bbL" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bbM" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/multitool, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bbP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solar/starboard) -"bbQ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bbR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbU" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbV" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "papersplease"; - name = "privacy shutters" - }, -/obj/item/crowbar, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bbW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "jangarage"; - name = "Custodial Closet Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/janitor) -"bbX" = ( -/obj/structure/janitorialcart, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bbY" = ( -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 8 - }, -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/plasteel, -/area/janitor) -"bbZ" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bca" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics South"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bcb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bcc" = ( -/obj/machinery/biogenerator, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bcd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/reagent_containers/food/snacks/cube/monkey, -/turf/open/floor/plasteel/dark, -/area/hydroponics) -"bce" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bcf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bcg" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bch" = ( -/obj/structure/table, -/obj/item/storage/box/ingredients/wildcard, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bck" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcm" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bco" = ( -/obj/structure/table/wood/fancy, -/obj/item/gun/ballistic/revolver/russian{ - pixel_y = 16 - }, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bcq" = ( -/obj/item/clothing/glasses/monocle, -/obj/item/instrument/recorder, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"bcr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcs" = ( -/obj/item/clothing/shoes/sandal, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bct" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bcx" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"bcy" = ( -/obj/item/chair, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/cargo) -"bcz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bcA" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/storage/belt/fannypack/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bcB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bcC" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bcD" = ( -/obj/structure/closet/wardrobe/miner, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bcE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bcF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bcG" = ( -/obj/structure/closet/emcloset, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bcH" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bcI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bcJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bcK" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bcL" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bcN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/bridge) -"bcO" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"bcQ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space, -/area/solar/starboard) -"bcR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space, -/area/solar/starboard) -"bcS" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solar/starboard) -"bcT" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space, -/area/solar/starboard) -"bcU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/space, -/area/solar/starboard) -"bcV" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard) -"bcX" = ( -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bcY" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bcZ" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bda" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"bdd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bde" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = -28; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/janitor) -"bdh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bdi" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = 22 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bdj" = ( -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdk" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bdm" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hydroponics) -"bdn" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdp" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bdq" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bdr" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bdv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bdw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bdx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bdy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bdz" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/cargo) -"bdB" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bdC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bdD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bdE" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bdF" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/qm"; - dir = 8; - name = "Quartermaster APC"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bdG" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bdH" = ( -/obj/machinery/computer/bounty{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bdI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bdJ" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bdK" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/shaft_miner, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bdL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bdM" = ( -/obj/machinery/requests_console{ - department = "Mining"; - pixel_x = 32 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bdQ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/cargo) -"bdR" = ( -/obj/structure/chair/stool, -/obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bdS" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "starboardsolar"; - name = "Starboard Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"bdU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space, -/area/solar/starboard) -"bdV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bdW" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bdZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bea" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"beb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/departments/custodian{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bec" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"bed" = ( -/obj/structure/table, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel, -/area/janitor) -"bee" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/mousetraps, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/item/clothing/head/crown, -/turf/open/floor/plasteel, -/area/janitor) -"bef" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"beg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"beh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bei" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"bej" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bek" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bel" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bem" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ben" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beo" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenwindowshutters"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"bep" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"beq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ber" = ( -/obj/effect/landmark/start/cook, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bes" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"beu" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bex" = ( -/obj/machinery/camera{ - c_tag = "Bar Port"; - dir = 1 - }, -/obj/machinery/light{ - light_color = "#c9d3e8" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bey" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bez" = ( -/obj/structure/table/wood, -/obj/item/instrument/trombone, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beA" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/light{ - light_color = "#c9d3e8" - }, -/obj/machinery/button/door{ - id = "barshutters"; - name = "Bar Lockdown"; - pixel_y = -28; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beC" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/machinery/light{ - light_color = "#c9d3e8" - }, -/obj/machinery/button/door{ - id = "barshutters"; - name = "Bar Lockdown"; - pixel_y = -28; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beD" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/obj/item/kitchen/fork, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beE" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beF" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Bar Starboard"; - dir = 1 - }, -/obj/machinery/light{ - light_color = "#c9d3e8" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"beI" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"beJ" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/keycard_auth{ - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"beK" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"beL" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"beM" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"beN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/shaft_miner, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"beO" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"beP" = ( -/obj/machinery/computer/shuttle/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"beR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"beS" = ( -/obj/item/caution, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"beU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space, -/area/solar/starboard) -"beY" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Central"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"beZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bfb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -29 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfc" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bff" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"bfj" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfk" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfl" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfm" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfn" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hydroponics) -"bfo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfp" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/button/door{ - id = "kitchenwindowshutters"; - name = "Kitchen Window Shutters Control"; - pixel_x = -26; - pixel_y = 5; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bfr" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/crew_quarters/bar) -"bfs" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bft" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bfu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bfv" = ( -/obj/structure/table, -/obj/item/crowbar/large, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfw" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/power/apc{ - dir = 1; - name = "Mech Bay APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfx" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfy" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/status_display/evac{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfz" = ( -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfA" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bfB" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/computer/card/minor/qm{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bfC" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Cargo Quartermaster's Office"; - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/cartridge/quartermaster, -/obj/item/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/coin/silver, -/obj/item/stamp/qm, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bfD" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -35 - }, -/obj/machinery/computer/security/qm{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bfE" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/machinery/camera{ - c_tag = "Cargo Mining Dock"; - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bfF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/shaft_miner, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bfG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bfH" = ( -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bfI" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bfJ" = ( -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"bfK" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - roundstart_template = /datum/map_template/shuttle/mining/delta; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"bfM" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bfN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paperplane, -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bfP" = ( -/obj/machinery/shieldwallgen, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bfY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bfZ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/lounge) -"bga" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "loungeshutters"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/lounge) -"bgb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Lounge" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"bgc" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "loungeshutters"; - name = "privacy shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/lounge) -"bgd" = ( -/turf/closed/wall, -/area/crew_quarters/lounge) -"bge" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 40 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgh" = ( -/obj/structure/chair{ - name = "Throne of Custodia" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgi" = ( -/obj/machinery/vending/cola, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgj" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/hydroponics) -"bgk" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenwindowshutters"; - name = "kitchen shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"bgl" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenwindowshutters"; - name = "kitchen shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"bgn" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgo" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/storage/fancy/rollingpapers, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgp" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgr" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgs" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/donut, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bgu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bgv" = ( -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgw" = ( -/obj/structure/chair, -/obj/item/clothing/head/bowler, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgx" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/structure/chair, -/obj/item/clothing/mask/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgz" = ( -/obj/structure/sign/poster/official/cohiba_robusto_ad{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32; - pixel_y = 40 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgB" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgC" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "mech bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bgE" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/robot_debris{ - icon_state = "gib3" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bgF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bgG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bgH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bgI" = ( -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bgJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bgK" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Mining Dock APC"; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bgL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bgM" = ( -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bgS" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 13; - id = "arrivals_stationary"; - name = "pubby arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/pubby; - width = 6 - }, -/turf/open/space/basic, -/area/space) -"bgU" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgV" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgY" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "loungeshutters"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bgZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bha" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhc" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhd" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhe" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 28 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32; - pixel_y = 38 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Bar1"; - location = "Robo" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "mech bay" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhl" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhn" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"bho" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"bhp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Maintenance"; - req_access_txt = "48" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bht" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bhu" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/light, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bhv" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock) -"bhz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bhE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bhF" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bhG" = ( -/turf/open/floor/carpet, -/area/crew_quarters/lounge) -"bhH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/crew_quarters/lounge) -"bhI" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Lounge"; - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bhJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhL" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=BrigS1"; - location = "Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lounge"; - location = "Kitchen" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhP" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 25; - req_access_txt = "29" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = -25; - req_access_txt = "29" - }, -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhU" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bhV" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bib" = ( -/obj/structure/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bic" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet, -/area/crew_quarters/lounge) -"bid" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet, -/area/crew_quarters/lounge) -"bie" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"bif" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"big" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bih" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/medbay/alt{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bij" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bik" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bil" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bim" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bin" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Hydroponics"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bio" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bip" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biq" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bir" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Robotics"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bis" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bit" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"biu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"biv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"biw" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bix" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/robot_debris{ - icon_state = "gib3" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biD" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"biF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"biI" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"biJ" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "loungeshutters"; - name = "privacy shutters" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/lounge) -"biK" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"biL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"biM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"biN" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/lounge"; - name = "Lounge APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/lounge) -"biO" = ( -/obj/structure/table/glass, -/obj/item/healthanalyzer{ - layer = 3.1 - }, -/obj/item/pen{ - layer = 3.2 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/sign/departments/examroom{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biR" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Genetics"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biS" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biT" = ( -/obj/structure/closet/firecloset, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Port Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/storage/emergency/port) -"biX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/storage/emergency/port) -"biY" = ( -/turf/closed/wall, -/area/medical/morgue) -"biZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bja" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"bjb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/security/checkpoint/medical) -"bjc" = ( -/turf/closed/wall, -/area/medical/medbay/central) -"bjd" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bje" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/medbay/central) -"bjf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bjg" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bjh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bji" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjj" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjk" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Bar"; - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjl" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjm" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjn" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bjr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bju" = ( -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bjv" = ( -/obj/structure/closet, -/obj/item/weldingtool, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjw" = ( -/turf/closed/wall/r_wall, -/area/science/explab) -"bjx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bjD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bjI" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/crew_quarters/lounge) -"bjJ" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/crew_quarters/lounge) -"bjK" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/wood, -/area/crew_quarters/lounge) -"bjL" = ( -/turf/closed/wall, -/area/storage/emergency/port) -"bjN" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bjP" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bjQ" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bjR" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bjS" = ( -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjW" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/power/apc{ - dir = 1; - name = "Morgue APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bjX" = ( -/obj/structure/filingcabinet, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bjY" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bjZ" = ( -/obj/machinery/computer/secure_data, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bka" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bkb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bkc" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkd" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bke" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkh" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bki" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bkm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bkn" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci3"; - location = "Sci2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bko" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bkp" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bkq" = ( -/obj/structure/table, -/obj/item/gps{ - gpstag = "RD0" - }, -/obj/item/assembly/igniter{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/head/welding, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bkr" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bks" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/stack/cable_coil, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bkt" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"bku" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bkv" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bkw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bkx" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"bky" = ( -/turf/open/floor/engine, -/area/science/explab) -"bkz" = ( -/obj/machinery/camera{ - c_tag = "Experimentation Lab Chamber"; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/science/explab) -"bkA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"bkB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"bkD" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/explab) -"bkF" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"bkH" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"bkP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/solar/starboard) -"bkQ" = ( -/obj/machinery/vending/snack, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkS" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bkW" = ( -/obj/item/hemostat, -/obj/item/retractor, -/obj/item/cautery, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bkX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bkY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bkZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Genetics Cloning Foyer"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/power/apc{ - dir = 1; - name = "Port Emergency Storage APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bla" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"blb" = ( -/turf/open/floor/plating, -/area/storage/emergency/port) -"blc" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bld" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"ble" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"blf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"blg" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"blh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/wardrobe/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bli" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"blj" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"blk" = ( -/obj/structure/table, -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bll" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bln" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26; - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blq" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"blr" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/healthanalyzer, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bls" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blt" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blv" = ( -/obj/structure/table, -/obj/item/paicard, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blw" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bly" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blC" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blD" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"blE" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"blF" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blG" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blH" = ( -/obj/machinery/camera{ - c_tag = "Robotics Lab"; - network = list("ss13","rd") - }, -/obj/structure/sink/kitchen{ - name = "utility sink"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blI" = ( -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blJ" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 14 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Robotics Lab APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"blL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"blM" = ( -/obj/machinery/rnd/server, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"blN" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"blP" = ( -/obj/effect/landmark/event_spawn, -/obj/item/beacon, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"blQ" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/science/explab) -"blR" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/science/explab) -"blS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/book/manual/wiki/experimentor, -/turf/open/floor/engine, -/area/science/explab) -"blT" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_circuit_printer, -/obj/item/integrated_electronics/wirer, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"blU" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/integrated_electronics/debugger, -/obj/machinery/computer/security/telescreen/circuitry{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"blV" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/stack/sheet/metal/ten, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"blW" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/wirer, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/circuitry{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"blX" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"blZ" = ( -/obj/machinery/computer/camera_advanced/xenobio, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bmc" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/britcup{ - desc = "Kingston's personal cup." - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bmd" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bme" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bmf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bmg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Maintenance"; - req_one_access_txt = "12;45;5;9" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bmh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bmi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bmj" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bmk" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bml" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bmn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/emergency/port) -"bmp" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bmq" = ( -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bmr" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Morgue"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bms" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/medical"; - dir = 8; - name = "Medbay Security APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/camera{ - c_tag = "Medbay Security Post"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bmt" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bmu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bmv" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bmw" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bmx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bmy" = ( -/obj/machinery/holopad, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Kitchen"; - location = "Med" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bmz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bmA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bmB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmC" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmH" = ( -/obj/machinery/holopad, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci2"; - location = "Sci" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bmL" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bmM" = ( -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmN" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmO" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bmR" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bmS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"bmT" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"bmU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"bmV" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/engine, -/area/science/explab) -"bmW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/engine, -/area/science/explab) -"bmX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/engine, -/area/science/explab) -"bmY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/engine, -/area/science/explab) -"bmZ" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/analyzer, -/obj/machinery/magnetic_controller{ - autolink = 1; - pixel_x = -28; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bna" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/box/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bnb" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bnc" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"bnd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"bnh" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bni" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/science/xenobiology) -"bnj" = ( -/turf/closed/wall, -/area/science/xenobiology) -"bnl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bnn" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/cargo) -"bno" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnp" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnq" = ( -/obj/item/beacon, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bns" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnt" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bnv" = ( -/turf/closed/wall, -/area/medical/genetics) -"bnw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Cloning"; - req_one_access_txt = "5;9" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"bnx" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/mask/surgical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bny" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bnz" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bnA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"bnB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Medbay Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"bnC" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/britcup{ - desc = "Kingston's personal cup." - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnD" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnG" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bnI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bnL" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bnM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bnN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bnO" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bnP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bnQ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bnR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bnS" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bnT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bnU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Room"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bnV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/engine, -/area/science/explab) -"bnW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/turf/open/floor/engine, -/area/science/explab) -"bnX" = ( -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "test chamber blast door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/explab) -"bnY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/turf/open/floor/engine, -/area/science/explab) -"bnZ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"boa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/engine, -/area/science/explab) -"boc" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"bod" = ( -/turf/closed/wall, -/area/science/explab) -"boe" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"bof" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/trinary/filter, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/science/explab) -"bog" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/engine, -/area/science/explab) -"boh" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/engine, -/area/science/explab) -"bok" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/cargo) -"bom" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"bon" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"boo" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Port Aft"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bop" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"boq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bor" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/medical/genetics) -"bos" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/grass, -/area/medical/genetics) -"bot" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/medical/genetics) -"bou" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/genetics) -"bov" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bow" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"box" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"boy" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"boz" = ( -/obj/machinery/vending/clothing, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"boA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"boC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"boD" = ( -/obj/item/ectoplasm, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"boE" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boH" = ( -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -32 - }, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boI" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boJ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boL" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boM" = ( -/obj/structure/bed/roller, -/obj/machinery/camera{ - c_tag = "Medbay Entrance"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boO" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"boP" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boQ" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boR" = ( -/obj/structure/table, -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boS" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boT" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boU" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -2; - pixel_y = -27 - }, -/obj/machinery/camera{ - c_tag = "Research Division Lobby"; - dir = 1 - }, -/obj/machinery/light, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"boX" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "robotics"; - name = "Shutters Control Button"; - pixel_x = -26; - pixel_y = 4; - req_access_txt = "29" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = -6 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"boZ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bpa" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bpb" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bpc" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/camera{ - c_tag = "Server Room"; - network = list("ss13","rd"); - pixel_x = 22 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bpd" = ( -/obj/machinery/button/door{ - id = "testlab"; - name = "Window Blast Doors"; - pixel_x = -6 - }, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "telelab"; - name = "Test Chamber Blast Door"; - pixel_x = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bpe" = ( -/obj/machinery/computer/rdconsole/experiment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bpf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bpg" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bph" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/camera{ - c_tag = "Experimentation Lab Central"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bpi" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bpn" = ( -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bpo" = ( -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"bpp" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"bpq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bpr" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/engine, -/area/science/xenobiology) -"bpt" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bpu" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bpv" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/medical/genetics) -"bpw" = ( -/obj/structure/flora/grass/jungle, -/obj/item/reagent_containers/food/snacks/grown/banana, -/turf/open/floor/grass, -/area/medical/genetics) -"bpx" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/flora/junglebush, -/obj/structure/flora/junglebush/large, -/turf/open/floor/grass, -/area/medical/genetics) -"bpy" = ( -/obj/machinery/clonepod, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bpz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bpA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bpB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bpC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/genetics) -"bpD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bpE" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bpF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bpG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/centcom{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpK" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpL" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bpM" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bpN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpO" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Medbay Reception"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpR" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpS" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bpV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"bpW" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Chemistry Desk"; - req_access_txt = "5; 33" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bpX" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/chemistry) -"bpY" = ( -/turf/closed/wall, -/area/medical/chemistry) -"bqb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"bqc" = ( -/obj/structure/table/reinforced, -/obj/item/pen{ - layer = 3.1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Research and Development Desk"; - req_one_access_txt = "7;29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/obj/item/folder/white, -/turf/open/floor/plating, -/area/science/lab) -"bqd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/public/glass{ - name = "Research Division" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqe" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/public/glass{ - name = "Research Division" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Research Division" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqg" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/storage/belt/utility, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/item/radio/headset/headset_sci{ - pixel_x = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bqh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bqi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bqj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bqk" = ( -/obj/machinery/aug_manipulator, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bql" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Server Room APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bqm" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bqn" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bqo" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqq" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqs" = ( -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqx" = ( -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bqA" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bqC" = ( -/obj/machinery/monkey_recycler, -/obj/structure/window/reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bqE" = ( -/obj/structure/table, -/obj/structure/window/reinforced, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bqF" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bqG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqH" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "containment blast door" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqI" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqJ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqK" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bqO" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12; 55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bqS" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/entry"; - dir = 4; - name = "Arrivals APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqT" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/ppflowers, -/obj/item/reagent_containers/food/snacks/grown/banana, -/obj/machinery/camera{ - c_tag = "Genetics Monkey Pen Fore"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/grass, -/area/medical/genetics) -"bqU" = ( -/obj/structure/sink/puddle, -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 6 - }, -/turf/open/floor/grass, -/area/medical/genetics) -"bqV" = ( -/obj/structure/flora/grass/jungle/b, -/obj/machinery/light/small{ - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"bqW" = ( -/obj/machinery/computer/cloning{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bqX" = ( -/obj/machinery/holopad, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bqY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 23 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bqZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bra" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "GeneticsDoor"; - name = "Cloning"; - req_one_access_txt = "5;9" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"brb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"brc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"brd" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Medbay APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bre" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "Medbay APC"; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"brf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"brg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"brh" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bri" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"brj" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"brk" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"brl" = ( -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"brm" = ( -/obj/machinery/chem_master, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = 32; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"brq" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/item/stack/cable_coil/orange, -/obj/item/storage/toolbox/mechanical, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"brr" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"brs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"brt" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bru" = ( -/obj/machinery/holopad, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"brv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"brw" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"brx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bry" = ( -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/crowbar, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"brz" = ( -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/razor{ - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"brA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/bot_assembly/cleanbot, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"brB" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"brC" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"brD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/science/server) -"brE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/science/server) -"brF" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"brG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1; - name = "Connector Port (Air Supply)" - }, -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brK" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brL" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brM" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/plasteel/white, -/area/science/explab) -"brO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"brR" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/xenobiology) -"brT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/closet/l3closet, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"brU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/structure/sign/departments/xenobio{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"brV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"brW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"brX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bsa" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bsb" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bsc" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio5"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bsd" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bse" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bsf" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Starboard"; - network = list("ss13","rd") - }, -/obj/structure/sign/departments/xenobio{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bsl" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bsm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Arrivals Starboard Aft"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsn" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bso" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/grass/jungle/b, -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/medical/genetics) -"bsp" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/grass, -/area/medical/genetics) -"bsq" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/medical/genetics) -"bsr" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/camera{ - c_tag = "Genetics Cloning"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/genetics) -"bss" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bst" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bsu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bsv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bsw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/genetics) -"bsx" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bsy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bsz" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bsA" = ( -/turf/closed/wall, -/area/medical/sleeper) -"bsB" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bsC" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bsD" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bsE" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bsF" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bsG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bsH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - id_tag = "medbaybolts"; - name = "Medbay" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bsI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - id_tag = "medbaybolts"; - name = "Medbay" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bsJ" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsK" = ( -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsL" = ( -/obj/item/storage/box/beakers, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsN" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bsR" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bsS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bsT" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Research Lab APC"; - pixel_x = 26 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bsU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bsV" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bsW" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bsX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bsY" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bsZ" = ( -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bta" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"btb" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/machinery/camera{ - c_tag = "Robotics - Aft"; - dir = 1; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"btc" = ( -/obj/machinery/computer/operating{ - dir = 8; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"btd" = ( -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bte" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/server) -"btf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access_txt = "30" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"btg" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/wrench, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/item/multitool, -/obj/item/multitool, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bth" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bti" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"btk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"btl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"btp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bts" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"btt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/sign/departments/xenobio{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"btB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"btE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"btF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/landmark/blobstart, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"btK" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "port bay 2"; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"btL" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"btM" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"btN" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"btP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"btQ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"btR" = ( -/obj/structure/flora/ausbushes/brflowers, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"btS" = ( -/turf/open/floor/grass, -/area/medical/genetics) -"btT" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/ausbushes/sunnybush, -/obj/item/reagent_containers/food/snacks/grown/banana, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"btU" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btX" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/medical_cloning{ - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btY" = ( -/obj/structure/table, -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = 24; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"btZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bua" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bub" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"buc" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bud" = ( -/obj/item/wrench/medical, -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bue" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/medical/sleeper) -"buf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bug" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"buh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bui" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"buj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"buk" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bul" = ( -/obj/machinery/chem_heater, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bum" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bun" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bup" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"buq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/lab) -"bur" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/rnd/production/protolathe/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"bus" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Research and Development Lab"; - dir = 8; - network = list("ss13","rd") - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"but" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"buu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/item/clothing/mask/cigarette, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"buv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"buw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bux" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"buy" = ( -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"buz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/explab) -"buA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"buC" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"buD" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buG" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buH" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"buI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"buL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"buW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bva" = ( -/turf/closed/wall, -/area/maintenance/department/engine) -"bvb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bvc" = ( -/turf/closed/wall/r_wall, -/area/medical/genetics) -"bvd" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Genetics"; - req_access_txt = "9" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bve" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/medical/genetics) -"bvf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Medbay Port Hallway"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bvg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bvh" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bvi" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bvj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bvk" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvm" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvo" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bvq" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bvr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bvs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bvt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bvu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvw" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"bvx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/lab) -"bvy" = ( -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/effect/turf_decal/delivery, -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/turf/open/floor/plasteel, -/area/science/lab) -"bvz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bvA" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvB" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 34 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvE" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "rndshutters"; - name = "research shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bvH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/explab) -"bvI" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Science Access Airlock"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bvJ" = ( -/obj/structure/closet/firecloset/full, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/explab) -"bvK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/explab) -"bvL" = ( -/obj/machinery/power/apc/highcap/ten_k{ - dir = 1; - name = "Research Division APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvR" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvT" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvU" = ( -/obj/machinery/recharger, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvV" = ( -/turf/open/floor/plasteel, -/area/science/explab) -"bvW" = ( -/obj/machinery/magnetic_module, -/obj/effect/landmark/blobstart, -/obj/structure/target_stake, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bvY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"bvZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bwa" = ( -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bwb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bwc" = ( -/obj/machinery/chem_master, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bwe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bwf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bwh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bwm" = ( -/turf/closed/wall, -/area/maintenance/department/science) -"bwn" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12; 55" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bws" = ( -/obj/structure/closet, -/obj/item/stack/cable_coil/random, -/obj/item/electronics/airalarm, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bwt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bwu" = ( -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"bwv" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bww" = ( -/obj/machinery/computer/scan_consolenew, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bwx" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bwy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bwz" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bwA" = ( -/obj/structure/table, -/obj/item/storage/box/rxglasses{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bwB" = ( -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bwC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bwD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bwE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/sleeper) -"bwF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/bloodbankgen, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bwG" = ( -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bwH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bwI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bwK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bwT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bwU" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bwV" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bwW" = ( -/obj/structure/rack, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bxa" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/research_and_development, -/obj/item/disk/tech_disk, -/obj/item/disk/design_disk, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bxc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 13 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 12 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxg" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bxh" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "R&D Lab"; - req_one_access_txt = "7;29;30" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"bxi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci9"; - location = "Sci8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxk" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci8"; - location = "Sci7" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxn" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bxp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "rndshutters"; - name = "research shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bxq" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxt" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxu" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxC" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxD" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxF" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bxG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/explab) -"bxH" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxK" = ( -/obj/structure/chair/stool, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bxM" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxN" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxO" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxP" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bxQ" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxR" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxS" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxT" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bxY" = ( -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bxZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bya" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"byb" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"byc" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"byd" = ( -/obj/structure/flora/junglebush/c, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/genetics) -"bye" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/grass, -/area/medical/genetics) -"byf" = ( -/obj/structure/table, -/obj/item/storage/box/disks, -/obj/item/flashlight/pen, -/obj/item/flashlight/pen, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byg" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byh" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byk" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/monkeycubes, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"byl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bym" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"byn" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"byo" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/sleeper) -"byp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"byr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bys" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"byt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"byu" = ( -/turf/closed/wall, -/area/crew_quarters/heads/cmo) -"byv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "cmoshutters"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"byw" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/machinery/power/apc{ - dir = 8; - name = "Chemistry APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/radio/headset/headset_med, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"byx" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"byz" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Chemistry Testing"; - req_access_txt = "5; 33" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/mob/living/simple_animal/mouse/white{ - name = "Labrette" - }, -/turf/open/floor/engine, -/area/medical/chemistry) -"byA" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/medical/chemistry) -"byC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/door/airlock/research{ - name = "R&D Lab"; - req_one_access_txt = "7;29;30" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"byE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"byF" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"byG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"byH" = ( -/obj/structure/table, -/obj/item/multitool, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"byI" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"byJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byL" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci5"; - location = "Sci4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"byO" = ( -/obj/machinery/door/poddoor/preopen{ - id = "rndshutters"; - name = "research shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"byP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/explab) -"byQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/explab) -"byR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"byS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/science/explab) -"byT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byU" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byV" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/light, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byW" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byX" = ( -/obj/machinery/camera{ - c_tag = "Research Division Secure Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"byZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bza" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzb" = ( -/obj/structure/closet/radiation, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzc" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzd" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"bze" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/science/explab) -"bzg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bzh" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Experimentation Lab"; - dir = 1; - network = list("ss13","rd") - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzi" = ( -/obj/structure/table, -/obj/item/electropack, -/obj/item/taperecorder, -/obj/item/screwdriver, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzj" = ( -/obj/structure/table, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bzk" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzl" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzn" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzr" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzs" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"bzy" = ( -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"bzz" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bzA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bzB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the monastery."; - dir = 8; - name = "Monastery Monitor"; - network = list("monastery"); - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/secondary/entry) -"bzC" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bzD" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bzE" = ( -/obj/structure/flora/grass/jungle/b, -/obj/machinery/camera{ - c_tag = "Genetics Monkey Pen Aft"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/structure/flora/ausbushes/grassybush, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/grass, -/area/medical/genetics) -"bzF" = ( -/obj/machinery/door/window/eastleft{ - name = "Monkey Pen"; - req_one_access_txt = "9" - }, -/obj/item/reagent_containers/food/snacks/grown/banana, -/turf/open/floor/grass, -/area/medical/genetics) -"bzG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzH" = ( -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzK" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bzM" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bzN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bzO" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"bzP" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bzQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bzR" = ( -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bzS" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bzT" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex/nitrile, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/mask/surgical, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bzU" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/medical/sleeper) -"bzV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bzW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bzX" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bzY" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/crew_quarters/heads/cmo) -"bzZ" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAa" = ( -/obj/machinery/computer/crew, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAb" = ( -/obj/machinery/computer/med_data, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAc" = ( -/obj/machinery/computer/card/minor/cmo, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/keycard_auth{ - pixel_x = 26 - }, -/obj/machinery/button/door{ - dir = 4; - id = "cmoshutters"; - name = "Privacy shutters"; - pixel_x = 38; - req_access_txt = "40" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bAf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bAg" = ( -/obj/structure/table/glass, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/stack/cable_coil/random, -/obj/item/book/manual/wiki/chemistry, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/stack/sheet/mineral/plasma{ - amount = 2; - layer = 2.9 - }, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bAi" = ( -/obj/machinery/smoke_machine, -/turf/open/floor/engine, -/area/medical/chemistry) -"bAk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"bAo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdprivacy"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bAp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/research{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bAq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdprivacy"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bAr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdprivacy"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bAt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bAu" = ( -/turf/closed/wall, -/area/security/checkpoint/science) -"bAv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bAy" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"bAA" = ( -/turf/closed/wall, -/area/science/storage) -"bAB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/science/storage) -"bAC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bAD" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bAE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bAF" = ( -/turf/closed/wall, -/area/science/mixing) -"bAG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"bAH" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bAI" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bAJ" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bAK" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bAL" = ( -/obj/structure/transit_tube/station/reverse/flipped, -/obj/structure/transit_tube_pod{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bAM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/extinguisher, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bAN" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/medical/genetics) -"bAO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/grass, -/area/medical/genetics) -"bAP" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/grass, -/area/medical/genetics) -"bAQ" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/item/storage/pill_bottle/mutadone, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAR" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAV" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Genetics"; - name = "Genetics Requests Console"; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bAW" = ( -/turf/closed/wall, -/area/medical/virology) -"bAX" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_exterior"; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bAY" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/medical/virology) -"bBb" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bBc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bBd" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bBe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bBf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bBg" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBi" = ( -/obj/effect/landmark/start/chief_medical_officer, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Chief Medical Office"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bBl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Lab Maintenance"; - req_access_txt = "5; 33" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bBm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bBo" = ( -/turf/closed/wall, -/area/hallway/primary/aft) -"bBp" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hor) -"bBq" = ( -/obj/structure/closet/secure_closet/RD, -/obj/machinery/power/apc{ - dir = 8; - name = "RD Office APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBr" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBu" = ( -/obj/item/kirbyplants/dead, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/button/door{ - desc = "A switch that controls privacy shutters."; - id = "rdprivacy"; - name = "Privacy Shutters"; - pixel_x = 40; - pixel_y = -5; - req_access_txt = "30" - }, -/obj/machinery/keycard_auth{ - pixel_x = 28; - pixel_y = 6 - }, -/obj/machinery/button/door{ - id = "rndshutters"; - name = "Research Lockdown"; - pixel_x = 28; - pixel_y = -5; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "research_shutters_2"; - name = "RnD Shutters"; - pixel_x = 40; - pixel_y = 5; - req_access_txt = "47" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bBw" = ( -/obj/machinery/computer/security, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bBx" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bBy" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecomms)"; - pixel_x = 28; - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bBz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bBA" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bBB" = ( -/obj/item/kirbyplants{ - icon_state = "plant-20"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bBC" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/turf/open/floor/engine, -/area/science/storage) -"bBD" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/science/storage) -"bBE" = ( -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bBF" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bBG" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/turf/open/floor/engine, -/area/science/storage) -"bBH" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bBI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bBJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bBK" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBL" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/airalarm/unlocked{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bBN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bBO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bBP" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBQ" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Toxins Lab APC"; - pixel_y = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/camera{ - c_tag = "Toxins Lab Starboard"; - network = list("ss13","rd") - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBT" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bBU" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"bBV" = ( -/obj/structure/transit_tube/curved, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bBW" = ( -/turf/open/space, -/area/space) -"bBX" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/engine) -"bBY" = ( -/obj/structure/closet/crate/medical, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bBZ" = ( -/obj/structure/table, -/obj/item/pen, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCa" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCb" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/camera{ - c_tag = "Genetics"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCc" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCe" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Genetics APC"; - pixel_x = 27 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bCf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bCg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bCh" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Virology Airlock"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bCi" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bCj" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"bCl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -2; - pixel_y = -27 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bCm" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bCn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bCo" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bCp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bCq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Office"; - req_access_txt = "40" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/heads/cmo) -"bCr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCs" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen{ - layer = 3.1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCt" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/clothing/glasses/hud/health, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCu" = ( -/obj/structure/table/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/stack/medical/gauze, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCv" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 10 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bCw" = ( -/obj/machinery/door/airlock/maintenance{ - name = "CMO Maintenance"; - req_access_txt = "40" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 11 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCB" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bCD" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bCE" = ( -/obj/machinery/computer/robotics{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCG" = ( -/obj/structure/displaycase/labcage, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCI" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bCJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdprivacy"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bCK" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Science Security Post"; - dir = 4; - network = list("ss13","rd") - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCL" = ( -/obj/effect/landmark/start/depsec/science, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCN" = ( -/obj/structure/chair/comfy, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bCO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bCP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/storage) -"bCQ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bCR" = ( -/turf/open/floor/engine, -/area/science/storage) -"bCS" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/science/storage) -"bCT" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bCU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bCV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"bCW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bCX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bCZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDb" = ( -/obj/machinery/atmospherics/components/trinary/mixer/flipped{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bDc" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bDd" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bDe" = ( -/obj/machinery/light{ - light_color = "#d1dfff" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bDf" = ( -/obj/structure/transit_tube, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bDg" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDh" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDi" = ( -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDj" = ( -/obj/item/trash/candy, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDk" = ( -/obj/item/chair, -/obj/item/cigbutt/roach, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDl" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bDm" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bDn" = ( -/obj/machinery/vending/wardrobe/gene_wardrobe, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bDo" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bDp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/plaque, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bDq" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bDr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/sleeper) -"bDs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bDt" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDv" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDx" = ( -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/heads/cmo"; - dir = 4; - name = "CMO's Office APC"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bDy" = ( -/turf/closed/wall, -/area/medical/exam_room) -"bDz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bDA" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bDB" = ( -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDC" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDD" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDE" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDF" = ( -/obj/machinery/computer/card/minor/rd{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bDG" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bDH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bDI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/closet/wardrobe/red, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bDK" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bDL" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/turf/open/floor/engine, -/area/science/storage) -"bDM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/engine, -/area/science/storage) -"bDN" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/science/storage) -"bDO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/storage) -"bDP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine, -/area/science/storage) -"bDQ" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bDR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bDS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bDT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bDU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research/glass{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bDV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bEa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bEb" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bEc" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bEd" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bEf" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/structure/closet/crate, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bEj" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden, -/obj/machinery/meter, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEl" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air Out" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEm" = ( -/obj/machinery/door/airlock/atmos/abandoned{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEo" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEq" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEr" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"bEs" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bEt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bEu" = ( -/obj/structure/closet/l3closet, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bEv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/rnd/production/techfab/department/medical, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEw" = ( -/obj/structure/table, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEx" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/southleft{ - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEy" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/southright{ - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEz" = ( -/obj/structure/table, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEB" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bED" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/valentine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEE" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEF" = ( -/obj/item/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/cartridge/medical, -/obj/item/cartridge/chemistry{ - pixel_y = 2 - }, -/obj/structure/table, -/obj/machinery/light, -/obj/item/wrench/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEG" = ( -/obj/item/folder/blue, -/obj/item/stamp/cmo, -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEH" = ( -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/machinery/light_switch{ - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bEI" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/closet, -/obj/item/clothing/under/rank/medical/doctor/nurse, -/obj/item/clothing/head/nursehat, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bEJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/landmark/blobstart, -/obj/item/melee/baton/cattleprod{ - preload_cell_type = /obj/item/stock_parts/cell/high - }, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bEK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "CMOCell"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 26; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bEL" = ( -/obj/machinery/door/airlock/command{ - id_tag = "CMOCell"; - name = "Personal Examination Room"; - req_access_txt = "40" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bEM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bEN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bEQ" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bER" = ( -/obj/machinery/computer/mecha{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/obj/machinery/light_switch{ - dir = 9; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bES" = ( -/obj/item/aicard, -/obj/item/circuitboard/aicore, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_y = -30; - receive_ore_updates = 1 - }, -/obj/machinery/light, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bET" = ( -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/stamp/rd, -/obj/machinery/status_display/ai{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Research Director's Office"; - dir = 1; - network = list("ss13","rd") - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bEU" = ( -/obj/item/cartridge/signal/toxins, -/obj/item/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/cartridge/signal/toxins{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/structure/table/glass, -/obj/machinery/computer/security/telescreen/rd{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bEV" = ( -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bEW" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -32 - }, -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bEX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bEY" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Science Security APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/closet/secure_closet/security/science, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bEZ" = ( -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bFa" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/storage) -"bFb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/science/storage) -"bFd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/science/storage) -"bFf" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bFh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFi" = ( -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFj" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFk" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/analyzer, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFl" = ( -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bFn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bFp" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bFr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bFs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bFt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bFu" = ( -/obj/machinery/button/massdriver{ - dir = 4; - id = "toxinsdriver"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bFx" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"bFy" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFz" = ( -/obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFB" = ( -/obj/item/newspaper, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFC" = ( -/obj/item/wallframe/camera, -/obj/machinery/button/door{ - id = "PottySci"; - name = "Bathroom Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 4; - specialfunctions = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFD" = ( -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bFE" = ( -/obj/docking_port/stationary{ - dwidth = 2; - height = 6; - id = "monastery_shuttle_asteroid"; - name = "monastery"; - width = 5 - }, -/turf/open/space, -/area/space/nearstation) -"bFF" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bFG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bFH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"bFI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bFJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bFK" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bFL" = ( -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bFM" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_interior"; - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/doorButtons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bFN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"bFO" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"bFP" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFR" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFS" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFU" = ( -/turf/closed/wall, -/area/medical/surgery) -"bFV" = ( -/obj/structure/table/glass, -/obj/item/flashlight/pen, -/obj/item/clothing/neck/stethoscope, -/obj/item/lipstick/black, -/obj/machinery/power/apc{ - dir = 8; - name = "Personal Examination Room APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/item/reagent_containers/pill/morphine, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bFW" = ( -/obj/effect/decal/remains/human, -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bFX" = ( -/obj/structure/bed, -/obj/item/bedsheet/cmo, -/obj/effect/decal/cleanable/blood/drip, -/obj/item/restraints/handcuffs, -/obj/item/clothing/mask/muzzle, -/obj/machinery/light_switch{ - pixel_y = -22 - }, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"bFY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/departments/examroom{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bFZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/department/engine) -"bGa" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/hallway/primary/aft) -"bGb" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bGc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"bGd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bGe" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bGf" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine, -/area/science/storage) -"bGg" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/science/storage) -"bGh" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bGi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Toxins Storage"; - dir = 8; - network = list("ss13","rd") - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/engine, -/area/science/storage) -"bGj" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bGk" = ( -/obj/machinery/light, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bGl" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bGm" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = -24; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGn" = ( -/obj/machinery/vending/wardrobe/science_wardrobe, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGo" = ( -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGp" = ( -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Toxins Lab Port"; - dir = 1; - network = list("ss13","rd") - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGq" = ( -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGt" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bGu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bGv" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bGw" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bGx" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bGy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bGA" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Launch Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"bGB" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bGD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bGE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/dock) -"bGF" = ( -/obj/machinery/door/airlock/external{ - name = "Pod Docking Bay" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/chapel/dock) -"bGG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/floor/plating/airless, -/area/chapel/dock) -"bGH" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bGI" = ( -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"bGK" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bGM" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bGN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bGO" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bGP" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bGQ" = ( -/obj/structure/window/reinforced, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bGR" = ( -/obj/machinery/door/window/eastleft{ - dir = 2; - name = "Monkey Pen"; - req_one_access_txt = "39" - }, -/mob/living/carbon/monkey, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bGS" = ( -/obj/machinery/doorButtons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 8; - pixel_y = 22; - req_access_txt = "39" - }, -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bGT" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bGU" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 1; - name = "Virology APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bGV" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bGW" = ( -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bGX" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bGY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bGZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bHa" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bHb" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/item/reagent_containers/glass/beaker/synthflesh, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bHc" = ( -/obj/machinery/computer/med_data, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bHd" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bHe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/medical/surgery) -"bHf" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHh" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHi" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHj" = ( -/obj/item/storage/belt/utility, -/obj/item/clothing/glasses/science, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHk" = ( -/obj/item/gps{ - gpstag = "RD0" - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/ears/earmuffs, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHl" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHm" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHo" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHr" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHt" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bHu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/storage) -"bHv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/science/storage) -"bHw" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"bHy" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"bHz" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bHA" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/button/ignition{ - id = "toxigniter"; - pixel_x = -6; - pixel_y = -24 - }, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_x = 6; - pixel_y = -26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bHC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Incinerator Output Pump" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bHD" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bHE" = ( -/obj/structure/window/reinforced, -/obj/machinery/doppler_array/research/science, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bHI" = ( -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"bHJ" = ( -/turf/open/floor/plating, -/area/chapel/dock) -"bHK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/chapel/dock) -"bHL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/chapel/dock) -"bHM" = ( -/turf/closed/wall/r_wall, -/area/chapel/dock) -"bHN" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bHP" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bHQ" = ( -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bHR" = ( -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bHS" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bHT" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bHU" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bHV" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bHX" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bHY" = ( -/obj/machinery/camera{ - c_tag = "Virology"; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bHZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bIa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bIb" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bIc" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bId" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIe" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Medbay Equipment Room"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIf" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIg" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIi" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIj" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/surgery) -"bIk" = ( -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bIl" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bIm" = ( -/obj/machinery/camera{ - c_tag = "Medbay Recovery Room"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - frequency = 1485; - name = "Station Intercom (Medbay)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bIn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/surgery) -"bIo" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Surgery"; - network = list("ss13","surgery") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIs" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bIt" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Eng2"; - location = "Eng" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci6"; - location = "Eng3" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIy" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci7"; - location = "Sci6" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bID" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Eng"; - location = "Sci5" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIE" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bIF" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/engine, -/area/science/storage) -"bIG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine, -/area/science/storage) -"bIH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc{ - name = "Toxins Storage APC"; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/storage) -"bII" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"bIJ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/engine, -/area/science/storage) -"bIK" = ( -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bIL" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/turf/open/floor/engine, -/area/science/mixing) -"bIM" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bIN" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 4; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("toxins"); - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bIP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"bIQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bIR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bIT" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bIU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, -/area/chapel/dock) -"bIV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/chapel/dock) -"bIW" = ( -/obj/machinery/computer/shuttle/monastery_shuttle, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bIX" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bIY" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space) -"bIZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJa" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJc" = ( -/obj/structure/chair/comfy/black, -/obj/item/trash/pistachios, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJd" = ( -/obj/structure/chair/comfy/black, -/obj/item/stack/spacecash/c100, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJe" = ( -/obj/structure/chair/comfy/black, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJf" = ( -/obj/structure/chair/comfy/black, -/obj/item/cigbutt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJg" = ( -/obj/item/trash/popcorn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJh" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bJi" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJj" = ( -/obj/structure/rack, -/obj/item/cartridge/medical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJk" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/infections, -/obj/item/hand_labeler, -/obj/item/radio/headset/headset_med, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bJl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bJm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bJn" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bJo" = ( -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bJp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bJq" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Recovery Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bJr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bJs" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bJt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery"; - req_access_txt = "45" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bJu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJw" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJy" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bJz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bJB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJC" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/engineering{ - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/camera{ - c_tag = "Research Division Entrance"; - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJI" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/machinery/space_heater, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJN" = ( -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bJO" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos{ - name = "Toxins Storage"; - req_access_txt = "24" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bJP" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bJQ" = ( -/obj/machinery/atmospherics/components/binary/pump/on, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/airlock_sensor/incinerator_toxmix{ - pixel_x = -24 - }, -/turf/open/floor/engine, -/area/science/mixing) -"bJR" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/mixing) -"bJS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/mixing) -"bJT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - req_access_txt = "8" - }, -/turf/open/floor/plating, -/area/science/mixing) -"bJV" = ( -/obj/machinery/mass_driver{ - id = "toxinsdriver" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/mixing) -"bJZ" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bKa" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bKb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bKc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bKd" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Monastery Docking Bay APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bKe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"bKf" = ( -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"bKh" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Arena" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/chair/stool, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bKi" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/mob/living/simple_animal/chicken{ - name = "Bloodthirsty Peckins" - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bKj" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bKk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bKl" = ( -/obj/item/stack/medical/gauze, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bKm" = ( -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bKn" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/virology) -"bKo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bKp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A"; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bKq" = ( -/obj/effect/spawner/structure/window, -/obj/structure/sign/warning/deathsposal, -/turf/open/floor/plating, -/area/medical/virology) -"bKr" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bKs" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bKt" = ( -/obj/machinery/computer/pandemic, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bKu" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bKv" = ( -/obj/item/bedsheet/medical, -/obj/structure/bed, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/structure/curtain{ - layer = 4.5 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bKw" = ( -/obj/machinery/vending/wallmed{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bKx" = ( -/obj/machinery/button/door{ - id = "patientB"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Patient Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bKy" = ( -/obj/machinery/door/airlock/medical{ - name = "Patient Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bKz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/item/beacon, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bKA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bKB" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bKC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bKD" = ( -/obj/structure/bed, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bKE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bKF" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bKG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Surgery APC"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bKH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bKI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bKJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bKK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bKM" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bKO" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bKP" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"bKQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bKR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bKS" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "Atmospherics APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKT" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKU" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKV" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKX" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Mix to Engine" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKY" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bKZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bLa" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bLb" = ( -/obj/machinery/atmospherics/pipe/simple{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bLc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1441; - id_tag = "mix_in"; - name = "distro out" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bLd" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Waste Tank" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bLe" = ( -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bLf" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/turf/open/floor/engine, -/area/science/mixing) -"bLh" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/mixing) -"bLn" = ( -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLp" = ( -/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLq" = ( -/obj/machinery/door/airlock/grunge{ - name = "Monastery Transit" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"bLs" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bLt" = ( -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bLu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bLv" = ( -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bLx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bLy" = ( -/obj/structure/mineral_door/wood{ - name = "The Roosterdome" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bLz" = ( -/obj/item/bedsheet/medical, -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bLA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bLB" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bLC" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/item/stack/sheet/mineral/plasma{ - amount = 2 - }, -/obj/item/storage/box/monkeycubes{ - layer = 3.1 - }, -/obj/item/clothing/gloves/color/latex, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bLE" = ( -/obj/structure/table/glass, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/item/pen/red, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bLF" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/pen{ - layer = 3.1 - }, -/obj/item/clothing/neck/stethoscope{ - layer = 3.2 - }, -/obj/machinery/light_switch{ - pixel_x = -22 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bLG" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bLH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/freezer, -/area/medical/medbay/central) -"bLI" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "patientB"; - name = "privacy shutters" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bLJ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bLK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bLL" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/surgery) -"bLM" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLN" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLO" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLQ" = ( -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bLR" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bLS" = ( -/obj/machinery/vending/cola, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bLT" = ( -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bLU" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"bLV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bLW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bLX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bLY" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 3 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bLZ" = ( -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMa" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMb" = ( -/obj/machinery/meter/atmos/distro_loop, -/obj/machinery/atmospherics/pipe/manifold/supply/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMc" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Distro" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMe" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMf" = ( -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMh" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "mix_in"; - name = "Gas Mix Tank Control"; - output_tag = "mix_in"; - sensors = list("mix_sensor" = "Tank") - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMi" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating/airless, -/area/engine/atmos) -"bMj" = ( -/obj/machinery/air_sensor{ - id_tag = "mix_sensor" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bMk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bMl" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "inc_in" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bMm" = ( -/obj/machinery/igniter{ - id = "toxigniter"; - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bMn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bMp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/science/mixing) -"bMq" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"bMr" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bMs" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bMt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bMu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bMv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/dock) -"bMw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"bMx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"bMy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bMA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bMB" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bMC" = ( -/obj/item/stack/spacecash/c10, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bMD" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bME" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bMF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bMG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bMH" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/syringes, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMJ" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = 32 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMK" = ( -/obj/item/soap/nanotrasen, -/obj/item/clothing/neck/stethoscope, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/gun/syringe/dart, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bMM" = ( -/obj/structure/closet/l3closet, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bMN" = ( -/obj/structure/table, -/obj/item/hemostat, -/obj/item/stack/medical/gauze, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMO" = ( -/obj/structure/table, -/obj/item/surgicaldrill, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMP" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMQ" = ( -/obj/structure/table, -/obj/item/cautery{ - pixel_x = 4 - }, -/obj/item/razor{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMR" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"bMS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bMT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bMU" = ( -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway Atmospherics"; - start_active = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecomms)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bMV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bMW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/primary/aft) -"bMX" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bMY" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "External to Filter" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNd" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNf" = ( -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNg" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNh" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Ports" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNi" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Ports" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNk" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bNn" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bNo" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "mix_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bNp" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bNq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Launch Maintenance"; - req_access_txt = "8" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"bNr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bNs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"bNt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Monastery Dock"; - dir = 1; - network = list("ss13","monastery") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bNu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bNv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bNw" = ( -/turf/closed/wall, -/area/chapel/dock) -"bNx" = ( -/obj/structure/transit_tube/station/reverse{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/dock) -"bNy" = ( -/obj/structure/transit_tube/horizontal, -/obj/machinery/camera{ - c_tag = "Monastery Transit"; - dir = 1; - network = list("ss13","monastery") - }, -/turf/open/floor/plating, -/area/chapel/dock) -"bNz" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/chapel/dock) -"bNA" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/dock) -"bNB" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"bNE" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"bNF" = ( -/obj/item/stack/medical/suture, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bNG" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bNH" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bNI" = ( -/obj/structure/window/reinforced, -/mob/living/simple_animal/chicken{ - name = "Killer Cluck" - }, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bNJ" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - icon_state = "left"; - name = "Arena" - }, -/obj/structure/window/reinforced, -/obj/structure/chair/stool, -/turf/open/floor/engine, -/area/maintenance/department/engine) -"bNK" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNL" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/beaker, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNM" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNN" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/machinery/light/small, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNO" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/beaker, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNP" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNQ" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNS" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNT" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNU" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNV" = ( -/obj/item/wrench/medical, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bNX" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bNZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOa" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOb" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOc" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOe" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"bOf" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bOg" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOh" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOi" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/atmos) -"bOk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOl" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOn" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOo" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOs" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bOt" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bOu" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/mixing) -"bOv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bOw" = ( -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bOx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bOy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bOz" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bOA" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bOB" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/medical/virology) -"bOD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"bOE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/medical/virology) -"bOF" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOJ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bOK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOL" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/primary/aft) -"bON" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bOO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/engine/atmos) -"bOR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bOS" = ( -/obj/effect/turf_decal/vg_decals/atmos/mix, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bOT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/closed/wall, -/area/engine/atmos) -"bOU" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste to Filter" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOV" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bOZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPa" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPd" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPe" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPf" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bPg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1441; - id_tag = "n2o_out"; - name = "n2o out" - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bPh" = ( -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bPl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "8" - }, -/turf/open/floor/plating, -/area/science/mixing) -"bPn" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bPo" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"bPp" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bPq" = ( -/obj/item/trash/chips, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bPr" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"bPs" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/engine) -"bPv" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bPw" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bPx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bPy" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/open/space/basic, -/area/space/nearstation) -"bPz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bPA" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPB" = ( -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bPC" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPD" = ( -/obj/structure/table, -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bPE" = ( -/turf/closed/wall, -/area/storage/tech) -"bPF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Tech Storage Maintenance"; - req_access_txt = "23" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bPG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPJ" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPK" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPL" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPM" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPN" = ( -/obj/machinery/conveyor_switch{ - id = "atmosdeliver" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPO" = ( -/obj/structure/disposalpipe/sorting/mail{ - sortType = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPQ" = ( -/turf/closed/wall, -/area/engine/atmos) -"bPR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/atmos) -"bPS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Central"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPT" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPU" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Ports" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPW" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPX" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensors = list("n2o_sensor" = "Tank") - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bPZ" = ( -/obj/machinery/air_sensor{ - id_tag = "n2o_sensor" - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bQa" = ( -/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bQb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/miner/n2o, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bQc" = ( -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Dock Port"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bQd" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bQe" = ( -/obj/item/flashlight/lantern{ - icon_state = "lantern-on" - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bQf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/chapel/asteroid/monastery) -"bQg" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/asteroid/monastery) -"bQh" = ( -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Dock Staboard"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bQi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bQj" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQm" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQn" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQo" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bQr" = ( -/turf/closed/wall/r_wall, -/area/storage/tech) -"bQs" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/item/aicard, -/obj/item/aiModule/reset, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQu" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQv" = ( -/obj/structure/rack, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/techstorage/engineering, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQw" = ( -/obj/structure/rack, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/obj/machinery/camera{ - c_tag = "Tech Storage" - }, -/obj/item/circuitboard/computer/monastery_shuttle, -/obj/effect/spawner/lootdrop/techstorage/service, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQx" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQy" = ( -/obj/structure/rack, -/obj/item/electronics/airalarm, -/obj/item/electronics/airlock, -/obj/item/electronics/apc, -/obj/item/electronics/firealarm, -/obj/item/electronics/firelock, -/obj/item/electronics/tracker, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQz" = ( -/obj/machinery/computer/arcade, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQA" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bQB" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Aft Hall APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bQC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Eng3"; - location = "Eng2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bQD" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bQE" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/atmos) -"bQJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Ports to Filter" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQK" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQM" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Unfiltered to Mix" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bQP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "n2o_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bQQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bQR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bQS" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bQT" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQU" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQX" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQY" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bQZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bRa" = ( -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"bRb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bRc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bRd" = ( -/obj/structure/closet/radiation, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRe" = ( -/obj/structure/closet/radiation, -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bRg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/radiation/rad_area{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRh" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRm" = ( -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRq" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bRs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRt" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRw" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRx" = ( -/obj/machinery/computer/atmos_control, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRy" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRA" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRC" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bRD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bRE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/maintenance/department/engine) -"bRF" = ( -/obj/structure/girder, -/turf/closed/wall, -/area/maintenance/department/engine) -"bRG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bRH" = ( -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bRK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/storage/tech) -"bRL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRM" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRO" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/medical, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/tcomms, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRQ" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/security, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRR" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRT" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRU" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "23" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bRV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bRZ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSa" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/conveyor{ - dir = 4; - id = "atmosdeliver" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSb" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Atmospherics" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/conveyor_switch{ - id = "atmosdeliver" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSc" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSd" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSe" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 8; - frequency = 1441; - id_tag = "tox_out"; - name = "toxin out" - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSk" = ( -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSl" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSm" = ( -/obj/structure/flora/ausbushes, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bSn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bSo" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSp" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 2 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bSq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bSt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSu" = ( -/obj/item/broken_bottle, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSv" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSw" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bSx" = ( -/obj/structure/closet, -/obj/item/restraints/handcuffs/cable, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bSy" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"bSz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bSA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bSB" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bSC" = ( -/obj/machinery/power/terminal, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bSD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bSE" = ( -/obj/structure/sign/warning/radiation/rad_area{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/beacon, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSG" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSJ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bSL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSN" = ( -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway Engineering"; - dir = 1; - start_active = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/engineering{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-02" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/sign/departments/engineering{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSQ" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSR" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSS" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bST" = ( -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSU" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSV" = ( -/obj/machinery/computer/atmos_control/tank{ - dir = 8; - input_tag = "tox_in"; - name = "Plasma Supply Control"; - output_tag = "tox_out"; - sensors = list("tox_sensor" = "Tank") - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bSW" = ( -/obj/machinery/air_sensor{ - id_tag = "tox_sensor" - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSX" = ( -/obj/effect/turf_decal/vg_decals/atmos/plasma, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSY" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/miner/toxins, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bSZ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bTa" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bTb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bTc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"bTd" = ( -/obj/item/stack/sheet/cardboard{ - amount = 14 - }, -/obj/item/vending_refill/cola, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTf" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Virology Waste to Space" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bTg" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Virology Waste to Atmospherics" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTh" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air Out" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bTi" = ( -/obj/item/picket_sign, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTj" = ( -/obj/structure/bonfire, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTk" = ( -/obj/structure/closet, -/obj/item/cigbutt/cigarbutt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTl" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bTm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTo" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/gravity_generator) -"bTr" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/pen/blue, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"bTs" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/gravity_generator) -"bTt" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/closet/crate/engineering/electrical, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/electronics/apc, -/obj/item/electronics/airalarm, -/obj/item/electronics/airlock, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTw" = ( -/obj/structure/rack, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTx" = ( -/obj/structure/rack, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/machinery/light{ - light_color = "#cee5d2" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTy" = ( -/obj/structure/rack, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTz" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/t_scanner, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTA" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/multitool, -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_y = -32 - }, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTB" = ( -/obj/machinery/power/apc{ - areastring = "/area/storage/tech"; - name = "Tech Storage APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/structure/closet/crate/solarpanel_small, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bTC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bTD" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"bTE" = ( -/turf/closed/wall, -/area/engine/engineering) -"bTF" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_one_access_txt = "10;24" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bTG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/engine/break_room) -"bTH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/sign/plaques/atmos{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Entrance" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/pipedispenser, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/pipedispenser/disposal, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/fireaxecabinet{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/atmos) -"bTP" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Starboard"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bTR" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTT" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bTV" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8; - frequency = 1441; - id = "tox_in"; - pixel_y = 1 - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bTW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bTX" = ( -/obj/structure/table, -/obj/item/storage/box/mousetraps, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUb" = ( -/obj/structure/grille/broken, -/obj/structure/musician/piano, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUc" = ( -/obj/item/reagent_containers/food/snacks/beans, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUd" = ( -/obj/structure/closet, -/obj/item/shard, -/obj/item/stack/spacecash/c10, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUe" = ( -/obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUf" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bUg" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bUh" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bUi" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/camera{ - c_tag = "Engineering Security Post"; - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUj" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUk" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUl" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Engineering Foyer APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bUm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bUn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering Access" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bUo" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bUp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUq" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUr" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUs" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUt" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUv" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUy" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUz" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUC" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bUD" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"bUE" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"bUF" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUG" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bUH" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/chief) -"bUI" = ( -/obj/item/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/cartridge/engineering{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/cartridge/engineering{ - pixel_x = 3 - }, -/obj/structure/table/reinforced, -/obj/item/cartridge/atmos, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUJ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office" - }, -/obj/machinery/computer/security/telescreen/ce{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUK" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/computer/apc_control, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUL" = ( -/obj/machinery/computer/station_alert, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUM" = ( -/obj/machinery/computer/card/minor/ce, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bUN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/stairs, -/area/storage/tech) -"bUO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/storage/tech) -"bUP" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/closed/wall, -/area/engine/engine_smes) -"bUQ" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bUR" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/smes/engineering, -/obj/machinery/camera{ - c_tag = "Engineering Power Storage" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bUS" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bUT" = ( -/turf/closed/wall, -/area/engine/engine_smes) -"bUU" = ( -/turf/closed/wall/r_wall, -/area/engine/engine_smes) -"bUV" = ( -/obj/structure/table, -/obj/item/pen, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = -32 - }, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUW" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/landmark/start/depsec/engineering, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUY" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/goonplaque, -/area/engine/break_room) -"bVb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVc" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "atmospherics security door" - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVd" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVg" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bVi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bVj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "incinerator mix pump" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bVm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plating, -/area/engine/atmos) -"bVn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bVo" = ( -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bVp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bVr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bVs" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bVu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bVv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bVw" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bVy" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bVz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bVC" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bVD" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -10; - req_access_txt = "10" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - req_access_txt = "11" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 10; - req_access_txt = "24" - }, -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/paper/monitorkey, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bVE" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bVG" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bVH" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/lighter, -/obj/item/stamp/ce, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/keycard_auth{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "CE Office APC"; - pixel_x = 28 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bVI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8; - light_color = "#d8b1b1" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bVJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bVK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bVL" = ( -/obj/structure/table, -/obj/item/storage/box/smart_metal_foam{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/storage/box/lights/mixed, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bVM" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bVN" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bVO" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/engineering"; - dir = 8; - name = "Engineering Security APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bVP" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bVQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/closet/wardrobe/red, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bVR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bVS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 27; - pixel_y = -25 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bVW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bVY" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVZ" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWb" = ( -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"bWe" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bWf" = ( -/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bWg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/miner/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bWh" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/office) -"bWi" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/reedbush, -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Primary Entrance"; - dir = 1; - network = list("ss13","monastery") - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"bWj" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bWk" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bWl" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bWn" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/clothing/glasses/meson/gar, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bWo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bWp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bWq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bWr" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 22 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bWs" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/RnD_secure, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bWt" = ( -/obj/structure/rack, -/obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - dir = 1 - }, -/obj/effect/spawner/lootdrop/techstorage/command, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bWu" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/AI, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/storage/tech) -"bWv" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel/twenty{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the engine containment area."; - dir = 4; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWw" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWx" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/obj/effect/landmark/start/station_engineer, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWy" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWz" = ( -/obj/structure/tank_dispenser, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bWA" = ( -/obj/structure/filingcabinet, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the engine containment area."; - dir = 4; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWC" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWD" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bWE" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bWF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bWG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bWH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/engine/break_room) -"bWI" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWJ" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWP" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Pure" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWQ" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"bWT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bWV" = ( -/turf/closed/wall, -/area/chapel/main/monastery) -"bWW" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"bWX" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/chapel/asteroid/monastery) -"bWZ" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"bXa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bXd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"bXe" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bXf" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXg" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "ce_privacy"; - name = "Privacy Shutters"; - pixel_x = 24; - req_access_txt = "11" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXk" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering) -"bXl" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/cable_coil, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/engine/engine_smes"; - dir = 8; - name = "Engine Room APC"; - pixel_x = -26 - }, -/obj/structure/cable, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bXm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bXn" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bXo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bXp" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bXq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"bXr" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Waste to Space" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXs" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXt" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXu" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXw" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXx" = ( -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXy" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXA" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXB" = ( -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXC" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXD" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXF" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bXG" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bXI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"bXJ" = ( -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"bXL" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"bXM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"bXN" = ( -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"bXS" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"bXU" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bXV" = ( -/obj/item/shard{ - icon_state = "small" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bXY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ce_privacy"; - name = "Privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bXZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ce_privacy"; - name = "Privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bYa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bYb" = ( -/turf/closed/wall, -/area/crew_quarters/heads/chief) -"bYc" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYd" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYe" = ( -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating, -/area/engine/engine_smes) -"bYg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engine_smes) -"bYh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Storage"; - req_access_txt = "11" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engine_smes) -"bYi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/engine_smes) -"bYj" = ( -/obj/machinery/vending/engivend, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYk" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"bYm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYp" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bYs" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bYt" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"bYu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/atmos{ - name = "Incinerator"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bYv" = ( -/obj/machinery/atmospherics/pipe/simple/green/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"bYw" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bYz" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"bYA" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main/monastery) -"bYB" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/chapel, -/area/chapel/main/monastery) -"bYF" = ( -/obj/item/trash/pistachios, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bYI" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Port Fore" - }, -/obj/structure/sign/map{ - icon_state = "map-pubby"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYT" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Starboard Fore" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bYZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZa" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZc" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZf" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Incinerator APC"; - pixel_x = -24 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZg" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZh" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZi" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bZj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bZl" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/chapel/main/monastery) -"bZm" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) -"bZn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"bZo" = ( -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"bZr" = ( -/obj/item/trash/tray, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bZs" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"bZt" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"bZx" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/item/storage/belt/utility, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZz" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZD" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZE" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZI" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZJ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"bZK" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/relief_valve/atmos/atmos_waste{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/engine/atmos) -"bZL" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bZM" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - name = "Mixed Air Tank In" - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bZN" = ( -/obj/machinery/atmospherics/pipe/simple, -/obj/structure/grille, -/obj/machinery/meter{ - name = "Mixed Air Tank Out" - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"bZO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZP" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZQ" = ( -/obj/machinery/computer/turbine_computer{ - dir = 8; - id = "incineratorturbine" - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = 24; - pixel_y = -6 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"bZR" = ( -/obj/machinery/atmospherics/pipe/simple/purple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bZS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_y = 22 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"bZT" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bZU" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 8 - }, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"bZV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"bZY" = ( -/turf/closed/wall, -/area/chapel/office) -"caa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"cab" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"cae" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/engine/engineering) -"caf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cah" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"caj" = ( -/obj/structure/table, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/apc, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stack/cable_coil, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cak" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cal" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cam" = ( -/turf/open/floor/plasteel, -/area/engine/engineering) -"can" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"caq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"car" = ( -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"caw" = ( -/obj/structure/table, -/obj/item/rcl/pre_loaded, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cax" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engineering) -"caz" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"caA" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"caB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"caC" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"caD" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"caE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"caF" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"caG" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engine/atmos) -"caH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"caI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Incinerator"; - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the turbine vent."; - dir = 4; - name = "turbine vent monitor"; - network = list("turbine"); - pixel_x = -29 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"caJ" = ( -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"caK" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"caL" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_x = -6; - pixel_y = -26 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caM" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caN" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/igniter/incinerator_atmos, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caP" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caQ" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 8; - luminosity = 2 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caR" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/power/turbine{ - dir = 4; - luminosity = 2 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"caS" = ( -/turf/closed/wall, -/area/chapel/asteroid/monastery) -"caT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"caV" = ( -/obj/machinery/holopad, -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/chapel, -/area/chapel/main/monastery) -"caW" = ( -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main/monastery) -"caZ" = ( -/obj/structure/table, -/obj/item/wirecutters, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cba" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/cigpack_robustgold, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cbb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"cbc" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbe" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbf" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbg" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbh" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbi" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbk" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbn" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbo" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/airlock_painter, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbs" = ( -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cbt" = ( -/obj/effect/turf_decal/vg_decals/atmos/nitrogen, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cbu" = ( -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cbv" = ( -/obj/effect/turf_decal/vg_decals/atmos/oxygen, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cbw" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cbx" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/vg_decals/atmos/air, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cby" = ( -/turf/open/floor/engine/air, -/area/engine/atmos) -"cbz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cbA" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cbB" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Incinerator to Output" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cbC" = ( -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_x = 26; - pixel_y = -6 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cbD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cbE" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cbF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cbG" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) -"cbK" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cbM" = ( -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) -"cbN" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cbO" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/trophy{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cbP" = ( -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/chapel/main/monastery) -"cbR" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Access" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cbS" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cbT" = ( -/obj/item/shovel, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cbV" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/engine/engineering) -"cbW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbX" = ( -/turf/open/floor/plating, -/area/engine/engineering) -"cbY" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cbZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cca" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccb" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -2 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccc" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cci" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccm" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/miner/nitrogen, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"ccn" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/miner/oxygen, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cco" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/air, -/area/engine/atmos) -"ccp" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"ccq" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"ccr" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Incinerator Output Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"ccs" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/maintenance/department/cargo) -"ccu" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"ccE" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"ccF" = ( -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"ccH" = ( -/turf/open/floor/plasteel/chapel, -/area/chapel/main/monastery) -"ccJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ccM" = ( -/obj/structure/chair, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"ccN" = ( -/obj/structure/closet/crate/medical, -/obj/item/stack/medical/gauze, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"ccO" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/structure/table/optable, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"ccQ" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engine/engineering) -"ccR" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/gps/engineering, -/turf/open/floor/plating, -/area/engine/engineering) -"ccW" = ( -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ccX" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"ccY" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cda" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cdc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdg" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cdh" = ( -/obj/structure/table/glass, -/obj/item/storage/toolbox/emergency, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cdi" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"cdj" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cdk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cdl" = ( -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cdm" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"cdo" = ( -/turf/open/floor/carpet, -/area/chapel/office) -"cdp" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/carpet/black, -/area/chapel/office) -"cdq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/chapel/main/monastery) -"cdr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cds" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chapel Port Access"; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdu" = ( -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/chapel/main/monastery) -"cdw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdA" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdC" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cdD" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"cdE" = ( -/obj/structure/chair, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cdI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank/high, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Engineering Port Aft"; - dir = 1; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdO" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cdR" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cdT" = ( -/obj/machinery/power/emitter/anchored{ - dir = 4; - state = 2 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cdW" = ( -/obj/structure/reflector/box/anchored, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ceb" = ( -/obj/machinery/computer/rdconsole/production{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cec" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"ced" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cee" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/office) -"cef" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/office) -"ceg" = ( -/obj/machinery/door/airlock/centcom{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/chapel/office) -"cei" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cej" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cek" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cel" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Access" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cen" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceo" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/asteroid, -/area/chapel/asteroid/monastery) -"ceq" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/engine/engineering) -"cer" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications Transit Tube"; - req_access_txt = "10; 61" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cet" = ( -/obj/structure/closet/radiation, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ceu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cey" = ( -/obj/structure/girder, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ceA" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"ceB" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/chapel/office) -"ceC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chapel Crematorium"; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ceE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ceF" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ceH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceK" = ( -/obj/item/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceL" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceN" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceQ" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ceT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/engine/engineering) -"ceU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching telecomms."; - layer = 4; - name = "Telecomms Telescreen"; - network = list("tcomms"); - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ceV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"ceX" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cfa" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfd" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cff" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"cfl" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Access" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfm" = ( -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"cfn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfp" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfr" = ( -/obj/structure/transit_tube_pod, -/obj/structure/transit_tube/station/reverse{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cfs" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfu" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/engine/engineering) -"cfC" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cfD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Monastery APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cfH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cfI" = ( -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cfJ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cfL" = ( -/obj/machinery/camera{ - c_tag = "Monastery Asteroid Starboard Aft"; - dir = 1; - network = list("ss13","monastery") - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/asteroid/monastery) -"cfN" = ( -/turf/closed/mineral, -/area/chapel/asteroid/monastery) -"cfO" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cfP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfQ" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"cfS" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cfX" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cfY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Engine" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cgb" = ( -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cgd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cgf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main/monastery) -"cgg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cgj" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgk" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/camera{ - c_tag = "Monastery Garden"; - network = list("ss13","monastery") - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgm" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/watermelon/holy, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cgp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cgr" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/engine/engineering) -"cgs" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cgu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"cgv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cgx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"cgG" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cgH" = ( -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgI" = ( -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgJ" = ( -/obj/item/cultivator, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgK" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/sugarcane, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cgL" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/suit/chaplain/holidaypriest, -/obj/item/clothing/suit/chaplain/nun, -/obj/item/clothing/head/nun_hood, -/obj/machinery/button/door{ - id = "Cell1"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cgM" = ( -/obj/structure/dresser, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cgN" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cgO" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"cgP" = ( -/obj/structure/transit_tube, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cgQ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cgU" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cgV" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"cgY" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"chb" = ( -/obj/machinery/camera{ - c_tag = "Monastery Kitchen"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chc" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chd" = ( -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"chi" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chj" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chk" = ( -/obj/structure/sink/puddle, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/landmark/event_spawn, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chl" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cho" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"chp" = ( -/obj/machinery/door/airlock{ - id_tag = "Cell1"; - name = "Cell 1" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chr" = ( -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cht" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"chv" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"chB" = ( -/obj/item/seeds/banana, -/obj/item/seeds/grass, -/obj/item/seeds/grape, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chC" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chD" = ( -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"chG" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/wheat, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"chJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main/monastery) -"chK" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/instrument/violin, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chL" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chM" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"chN" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/item/soap/homemade, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"chU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chV" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chW" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/peppermill, -/obj/item/storage/box/ingredients/wildcard{ - layer = 3.1 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chX" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/kitchen/rollingpin, -/obj/item/kitchen/knife, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chY" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"chZ" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cib" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cic" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cid" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cif" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/stack/cable_coil/yellow, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cig" = ( -/obj/structure/transit_tube/crossing, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cio" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/suit/chaplain/holidaypriest, -/obj/item/clothing/suit/chaplain/nun, -/obj/item/clothing/head/nun_hood, -/obj/machinery/button/door{ - id = "Cell2"; - name = "Cell Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"cip" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/easel, -/obj/item/canvas/twentythreeXnineteen, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"ciq" = ( -/obj/structure/toilet/secret/low_loot{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"cit" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"civ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ciy" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"ciz" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciE" = ( -/obj/structure/flora/ausbushes/genericbush, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciF" = ( -/obj/machinery/door/airlock{ - id_tag = "Cell2"; - name = "Cell 2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"ciG" = ( -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Aft"; - dir = 1; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"ciI" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Chamber" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/engine/supermatter) -"ciJ" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciK" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciN" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciO" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker{ - layer = 3.1; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ciS" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciT" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/harebell, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciV" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciW" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"ciX" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/item/storage/crayons, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"ciY" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/chapel/main/monastery) -"ciZ" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/plasteel/showroomfloor, -/area/chapel/main/monastery) -"cjf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjl" = ( -/obj/machinery/door/airlock/grunge{ - name = "Monastery Cemetary" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjm" = ( -/turf/closed/wall, -/area/maintenance/department/chapel/monastery) -"cjo" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light/small, -/obj/item/seeds/poppy, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cjp" = ( -/turf/closed/wall, -/area/library) -"cjq" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cjr" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cjt" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/engineering) -"cju" = ( -/turf/closed/mineral, -/area/asteroid/nearstation/bomb_site) -"cjv" = ( -/turf/closed/wall, -/area/asteroid/nearstation/bomb_site) -"cjw" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/asteroid/nearstation/bomb_site) -"cjx" = ( -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"cjB" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "monastery"; - width = 35 - }, -/turf/open/space/basic, -/area/space) -"cjC" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cjH" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Garden" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cjO" = ( -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 20; - layer = 3.1 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cjP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cjQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library) -"cjR" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library/lounge) -"cjV" = ( -/obj/machinery/camera/preset/toxins, -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"cjZ" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cka" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckb" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"ckc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckd" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cke" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckf" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckg" = ( -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckh" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cki" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air Out" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/item/stack/rods/fifty, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/carpet, -/area/library) -"cko" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/plasteel/dark, -/area/library) -"ckp" = ( -/obj/structure/bookcase/random/religion, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckt" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"cku" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"ckv" = ( -/obj/machinery/mass_driver{ - id = "chapelgun" - }, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Mass Driver" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckw" = ( -/obj/machinery/mass_driver{ - id = "chapelgun" - }, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cky" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckz" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckA" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckB" = ( -/obj/machinery/atmospherics/pipe/manifold/general/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckC" = ( -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckD" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckE" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library/lounge) -"ckG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckH" = ( -/turf/open/floor/plasteel/dark, -/area/library) -"ckI" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckJ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"ckK" = ( -/turf/closed/mineral/random/low_chance, -/area/asteroid/nearstation/bomb_site) -"ckL" = ( -/obj/item/beacon, -/turf/open/floor/plating/airless, -/area/asteroid/nearstation/bomb_site) -"ckM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckN" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ckO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckP" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckQ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"ckR" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"ckS" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Monastery Library"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckT" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckU" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckV" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"ckW" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/plasteel/dark, -/area/library) -"ckX" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"clb" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "mass driver door" - }, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"cld" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/department/chapel/monastery) -"cle" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/chapel/monastery) -"clf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/box/lights/bulbs, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"clg" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cli" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"clj" = ( -/obj/item/flashlight/lantern{ - icon_state = "lantern-on" - }, -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"clk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/libraryscanner, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"clm" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cln" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"clp" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/plasteel/dark, -/area/library) -"cls" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/closed/mineral, -/area/asteroid/nearstation/bomb_site) -"clv" = ( -/turf/closed/mineral/iron, -/area/asteroid/nearstation/bomb_site) -"clw" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"clz" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"clA" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Telecommunications External Access"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clB" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"clC" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clD" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"clF" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/closed/mineral/random/low_chance, -/area/asteroid/nearstation/bomb_site) -"clG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clH" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clJ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Telecommunications External Access"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clL" = ( -/turf/closed/wall, -/area/tcommsat/computer) -"clM" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Waste to Space" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clN" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clP" = ( -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clS" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/closed/wall, -/area/tcommsat/computer) -"clU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/item/wrench, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/tcommsat/computer) -"clX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clY" = ( -/obj/item/beacon, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"clZ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cma" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Telecommunications Maintenance"; - req_access_txt = "61" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cmb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cmc" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cmd" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cme" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cmf" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/radio, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmg" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms RC"; - pixel_y = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmh" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications Chamber"; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmj" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Control Room"; - req_access_txt = "19; 61" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmk" = ( -/obj/machinery/power/apc{ - areastring = "/area/tcommsat/computer"; - dir = 1; - name = "Telecomms Monitoring APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cml" = ( -/obj/machinery/announcement_system, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmm" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmn" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/office/dark, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cmr" = ( -/obj/structure/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cms" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmt" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Port"; - dir = 8; - network = list("tcomms") - }, -/turf/open/space, -/area/space/nearstation) -"cmu" = ( -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmv" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 1; - network = "tcommsat" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmw" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"cmx" = ( -/obj/machinery/computer/telecomms/server{ - dir = 1; - network = "tcommsat" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmy" = ( -/obj/machinery/computer/message_monitor{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cmz" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Starboard"; - dir = 4; - network = list("tcomms") - }, -/turf/open/space, -/area/space/nearstation) -"cmB" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"cmF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"cmG" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmH" = ( -/obj/machinery/telecomms/message_server, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmK" = ( -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cmL" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmM" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmN" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmO" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmP" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmQ" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cmU" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cmV" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmW" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmX" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmY" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cmZ" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cna" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnb" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnc" = ( -/obj/machinery/power/terminal, -/obj/machinery/ntnet_relay, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnd" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cne" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnj" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnk" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnl" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnm" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnn" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cno" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cnp" = ( -/obj/machinery/camera/preset/toxins{ - c_tag = "Bomb Testing Asteroid Aft"; - dir = 1 - }, -/turf/open/floor/plating/asteroid/airless, -/area/asteroid/nearstation/bomb_site) -"cnq" = ( -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/asteroid/nearstation/bomb_site) -"cnr" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cns" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cnt" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cnu" = ( -/obj/machinery/camera/motion{ - c_tag = "Telecomms Server Room"; - dir = 1; - network = list("tcomms") - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cnv" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cnw" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cnx" = ( -/obj/structure/table, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cny" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Port Aft"; - network = list("tcomms") - }, -/turf/open/space, -/area/space/nearstation) -"cnz" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Starboard Aft"; - network = list("tcomms") - }, -/turf/open/space, -/area/space/nearstation) -"cnC" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - name = "AI Satellite turret control"; - pixel_x = -5; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cnD" = ( -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAP) -"cnE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/lattice, -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAP) -"cnG" = ( -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAS) -"cnH" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space/basic, -/area/ai_monitored/turret_protected/AIsatextAP) -"cnJ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnN" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/camera{ - c_tag = "Brig Equipment Room" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 29 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnP" = ( -/obj/machinery/vending/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnQ" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnT" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnV" = ( -/obj/structure/punching_bag, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cnX" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cod" = ( -/obj/structure/table, -/obj/item/clothing/under/color/grey, -/obj/machinery/power/apc{ - dir = 1; - name = "Dormitory APC"; - pixel_y = 25 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/dorms) -"coe" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Dormitory Maintenance APC"; - pixel_x = -24 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"coi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"coj" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"cok" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"col" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/crew_quarters/dorms) -"com" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"con" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"coo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"cop" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"cor" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "public external airlock" - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"cos" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cot" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cou" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"coy" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Bridge"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/crew_quarters/bar) -"coG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"coH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/bar) -"coJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/bar) -"coL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"coN" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"coV" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"coW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"cpa" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/crew_quarters/bar) -"cpb" = ( -/obj/structure/table/glass, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ - pixel_x = -8; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/bottle/kahlua{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/absinthe{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpc" = ( -/obj/machinery/chem_dispenser/drinks, -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Bar Drinks" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpe" = ( -/obj/machinery/door/airlock{ - name = "Bar Access"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpg" = ( -/obj/machinery/button/door{ - id = "barshutters"; - name = "Bar Lockdown"; - pixel_y = 26; - req_access_txt = "28" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cph" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpk" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 19 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpl" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpm" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/pie/cream, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpn" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/spaghetti, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpo" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpq" = ( -/obj/machinery/deepfryer, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpr" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cps" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpt" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpu" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cpw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpx" = ( -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "kitchenshutters"; - name = "Kitchen Shutters Control"; - pixel_x = 5; - pixel_y = -24; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/food_cart, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpz" = ( -/obj/structure/rack, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpA" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/snacks/mint, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpB" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"cpC" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barshutters"; - name = "bar shutters" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"cpH" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpI" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpK" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpL" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpM" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpP" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpQ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpT" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpU" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cpZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqd" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqe" = ( -/obj/effect/turf_decal/plaque, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Med"; - location = "Sci9" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqh" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqi" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqk" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cql" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqp" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division Hallway"; - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"cqz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqE" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18"; - layer = 3 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cqH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/dock) -"cqS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space/nearstation) -"cqU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"cqV" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cqW" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"cqX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"crb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/office) -"cre" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"crg" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crh" = ( -/obj/machinery/button/crematorium{ - id = "foo"; - pixel_x = 25 - }, -/obj/structure/bodycontainer/crematorium{ - id = "foo" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cri" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "secure storage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/engine/engineering) -"crj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crl" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"crm" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/open/space, -/area/space/nearstation) -"crt" = ( -/obj/structure/table/wood/fancy, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cru" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crv" = ( -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crx" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cry" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"crz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"crA" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"crB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"crC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"crD" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/box/bodybags, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crH" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Chapel Port"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crL" = ( -/obj/structure/chair/wood/normal, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/chapel/main/monastery) -"crM" = ( -/obj/structure/chair/wood/normal, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/chapel/main/monastery) -"crN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel Starboard"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"crT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crU" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Chapel Office APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"crX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"crY" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/breadslice/plain, -/obj/item/reagent_containers/food/snacks/breadslice/plain{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/snacks/breadslice/plain{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csd" = ( -/turf/open/floor/carpet/black, -/area/chapel/office) -"cse" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csf" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csi" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csk" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csn" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_x = -32 - }, -/obj/structure/closet, -/obj/item/storage/backpack/cultpack, -/obj/item/clothing/head/nun_hood, -/obj/item/clothing/suit/chaplain/nun, -/obj/item/clothing/suit/chaplain/holidaypriest, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cso" = ( -/obj/structure/table/wood, -/obj/item/nullrod, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csp" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csq" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"css" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"csv" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csy" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"csB" = ( -/obj/effect/landmark/start/chaplain, -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csC" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/carpet/black, -/area/chapel/office) -"csE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"csM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Chapel Office Tunnel"; - dir = 1; - network = list("ss13","monastery") - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/chapel/office) -"csN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csS" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chapel Starboard Access"; - network = list("ss13","monastery") - }, -/obj/structure/chair/wood/normal, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"csU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/chapel/main/monastery) -"csY" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cta" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctb" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cte" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"ctg" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cth" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctu" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"ctJ" = ( -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"ctK" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctL" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Monastery Cloister Fore"; - network = list("ss13","monastery") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"ctQ" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"ctS" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ctX" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/turf/open/floor/carpet, -/area/chapel/office) -"cuc" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Xenobiology Central"; - dir = 1; - network = list("ss13","rd") - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cui" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"cuk" = ( -/obj/structure/closet{ - name = "beekeeping wardrobe" - }, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/head/beekeeper_head, -/obj/item/clothing/head/beekeeper_head, -/obj/item/clothing/head/beekeeper_head, -/obj/item/melee/flyswatter, -/obj/item/melee/flyswatter, -/obj/item/melee/flyswatter, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cul" = ( -/obj/machinery/chem_master/condimaster, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cum" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cun" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuo" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cup" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/seeds/watermelon/holy, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cus" = ( -/obj/structure/closet{ - name = "beekeeping supplies" - }, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cut" = ( -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuu" = ( -/obj/item/storage/bag/plants, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/storage/bag/plants/portaseeder, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuv" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuw" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cux" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/tea, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuy" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Monastery Cloister Port"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuA" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/beebox, -/obj/item/queen_bee/bought, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuB" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuE" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/carrot, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuG" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuH" = ( -/obj/item/hatchet, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuI" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuJ" = ( -/obj/item/shovel/spade, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuK" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Monastery Dining Room"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuM" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Garden APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuO" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/sugarcane, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cuP" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuQ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/mineral/iron, -/area/chapel/main/monastery) -"cuR" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cuS" = ( -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuU" = ( -/obj/machinery/door/airlock{ - name = "Dining Room" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuV" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Garden" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuY" = ( -/obj/machinery/door/airlock{ - name = "Garden" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cuZ" = ( -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/chapel/main/monastery) -"cvb" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/wheat, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvd" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cve" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvf" = ( -/obj/machinery/recycler, -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cvg" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvh" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/poppy, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvi" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvj" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light/small, -/turf/open/floor/grass, -/area/hydroponics/garden/monastery) -"cvk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Monastery Cloister Starboard"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvq" = ( -/obj/machinery/camera{ - c_tag = "Monastery Secondary Dock"; - dir = 8; - network = list("ss13","monastery") - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Coffin Storage"; - req_one_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvs" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Coffin Storage"; - req_one_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvw" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvA" = ( -/obj/machinery/door/airlock/external{ - name = "Dock Access" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvB" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvC" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvE" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvH" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvI" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Monastery Cloister Aft"; - dir = 1; - network = list("ss13","monastery") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvJ" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvR" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Monastery Cemetary"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvS" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvT" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cvV" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cvX" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"cvY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"cvZ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"cwa" = ( -/turf/closed/wall/mineral/iron, -/area/maintenance/department/chapel/monastery) -"cwc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Monastery Maintenance"; - req_one_access_txt = "22;24;10;11;37" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwe" = ( -/turf/closed/wall/mineral/iron, -/area/library/lounge) -"cwg" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cwj" = ( -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cwl" = ( -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/item/storage/fancy/candle_box, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwm" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwo" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Monastery Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwr" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Library Lounge APC"; - pixel_x = 24 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cww" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwx" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cwy" = ( -/obj/structure/table/wood/fancy, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/item/candle, -/obj/item/candle{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/candle{ - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"cwz" = ( -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwA" = ( -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwE" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwF" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - id = "chapelgun"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwK" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/library/lounge) -"cwM" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"cwO" = ( -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"cwR" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cwS" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"cwU" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cxe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library/lounge) -"cxg" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cxh" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cxk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cxn" = ( -/obj/machinery/newscaster{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library/lounge) -"cxt" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cxz" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/library/lounge) -"cxC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxD" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall, -/area/library/lounge) -"cxJ" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/library/lounge) -"cxK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxM" = ( -/obj/structure/window/reinforced/fulltile, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/library/lounge) -"cxX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Monastery Archives Access Tunnel"; - dir = 4; - network = list("ss13","monastery") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cxY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cyl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cym" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cyy" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/closed/wall, -/area/library/lounge) -"cyz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cyA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"cyB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/library/lounge) -"cyL" = ( -/obj/structure/lattice, -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid/monastery) -"cyM" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/chapel/asteroid/monastery) -"cyP" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyQ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/camera{ - c_tag = "Monastery Archives Fore"; - network = list("ss13","monastery") - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyS" = ( -/obj/structure/bookcase/random/religion, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyT" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/library) -"cyU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/library) -"cyY" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cyZ" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/plasteel/dark, -/area/library) -"czl" = ( -/obj/structure/chair/wood/normal, -/turf/open/floor/carpet, -/area/library) -"czo" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czp" = ( -/obj/structure/table/wood, -/obj/item/disk/nuclear/fake, -/obj/item/barcodescanner, -/turf/open/floor/plasteel/dark, -/area/library) -"czq" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czr" = ( -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet, -/area/library) -"czt" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/photo_album, -/turf/open/floor/carpet, -/area/library) -"czu" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - layer = 2.9; - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czv" = ( -/obj/structure/chair/wood/normal{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czw" = ( -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czB" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/carpet, -/area/library) -"czC" = ( -/obj/structure/table/wood/fancy, -/obj/item/flashlight/lantern{ - icon_state = "lantern-on"; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/library) -"czD" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/library) -"czH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Monastery Archives Port"; - dir = 4; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czI" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/library) -"czL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/library) -"czM" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/library) -"czN" = ( -/obj/structure/table/wood, -/obj/item/storage/bag/books, -/turf/open/floor/plasteel/dark, -/area/library) -"czO" = ( -/obj/structure/table/wood, -/obj/item/instrument/saxophone, -/turf/open/floor/plasteel/dark, -/area/library) -"czP" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/coin/gold, -/turf/open/floor/plasteel/dark, -/area/library) -"czQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Monastery Archives Starboard"; - dir = 8; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czY" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"czZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAa" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAj" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/door/window/northright{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Curator Desk Door"; - req_access_txt = "37" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAs" = ( -/obj/structure/table/wood, -/obj/item/kirbyplants{ - icon_state = "plant-05"; - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAt" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern{ - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAu" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/pharaoh, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAv" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Curator Desk Door"; - req_access_txt = "37" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/obj/effect/landmark/start/librarian, -/turf/open/floor/plasteel/dark, -/area/library) -"cAH" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAM" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAQ" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cAS" = ( -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/plasteel/dark, -/area/library) -"cAT" = ( -/obj/structure/destructible/cult/tome, -/turf/open/floor/plasteel/dark, -/area/library) -"cAU" = ( -/obj/structure/rack{ - icon = 'icons/obj/stationobjs.dmi'; - icon_state = "minibar"; - name = "skeletal minibar" - }, -/obj/item/book/codex_gigas, -/obj/machinery/camera{ - c_tag = "Monastery Archives Aft"; - dir = 1; - network = list("ss13","monastery") - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cAV" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cBi" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"cBk" = ( -/obj/machinery/vending/boozeomat/pubby_maint, -/turf/closed/wall, -/area/maintenance/department/crew_quarters/dorms) -"cBl" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBm" = ( -/obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBn" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBo" = ( -/obj/structure/table, -/obj/item/lighter, -/obj/structure/light_construct/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBp" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBq" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBr" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"cBs" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"cBv" = ( -/obj/item/cigbutt/roach, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"cBw" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "supplybridge"; - name = "Space Bridge Control"; - pixel_y = 27 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "supplybridge"; - name = "Space Bridge Control"; - pixel_y = 27 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"cBA" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBB" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"cBK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cBL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_one_access_txt = "12;45;5;9" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cBM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/office) -"cBR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"cBS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/engine/engineering) -"cBT" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cBU" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"cCl" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cCt" = ( -/turf/open/floor/plasteel/white, -/area/science/lab) -"cCB" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cCF" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"cCH" = ( -/obj/effect/turf_decal/bot/left, -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"cCI" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"cCP" = ( -/obj/effect/turf_decal/bot/right, -/turf/open/floor/plasteel/white, -/area/engine/gravity_generator) -"cCR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/department/chapel/monastery) -"cCS" = ( -/obj/machinery/rnd/production/techfab/department/security, -/turf/open/floor/plasteel/dark, -/area/security/main) -"cCT" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cCU" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/tcomms{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCV" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/turf/open/floor/plasteel, -/area/engine/engineering) -"cCW" = ( -/obj/machinery/vending/games, -/turf/open/floor/plasteel/dark, -/area/library) -"cCX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"cCY" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"cCZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"cDa" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"cDB" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"cFB" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"cHS" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Firing Range" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"cJo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cKV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cLw" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"cOp" = ( -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cPy" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cPO" = ( -/obj/item/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/department/crew_quarters/dorms) -"cPT" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSJ" = ( -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/sleeper"; - dir = 4; - name = "Treatment Center APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cSK" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/eastright{ - base_state = "left"; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 8; - freq = 1400; - location = "Research Division" - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"cXW" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"cZt" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/machinery/power/rad_collector/anchored, -/turf/open/floor/engine, -/area/engine/supermatter) -"daY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal) -"dbi" = ( -/obj/machinery/vr_sleeper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"dci" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"dcL" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"deJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/gps/mining{ - gpstag = "MINE_PUB" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dgg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dgj" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"dgz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"dgI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"dhz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dir" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"dkR" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"dmP" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"dmT" = ( -/obj/machinery/shieldwallgen/xenobiologyaccess, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"dnS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix Bypass" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"doo" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"dpa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"dpb" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"dpc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/chapel/main/monastery) -"dps" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall, -/area/quartermaster/qm) -"dqw" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12; 55" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/science) -"dqG" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"dqY" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"dse" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"dsv" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"dsz" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"dtm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"duF" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -2 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 2; - pixel_y = -6 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"duQ" = ( -/obj/machinery/camera{ - c_tag = "Departure Lounge Aft"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"dxc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"dye" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/departments/science{ - pixel_y = 32 - }, -/obj/item/kitchen/knife, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dym" = ( -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dAF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/science/mixing) -"dAG" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"dEy" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/reflector/double/anchored{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dFJ" = ( -/turf/open/floor/engine, -/area/engine/supermatter) -"dHr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/machinery/button/door{ - id = "engsm"; - name = "Radiation Shutters Control"; - pixel_y = 24; - req_access_txt = "10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"dHZ" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/obj/machinery/button/door{ - id = "chemistry_shutters"; - name = "Shutters Control"; - pixel_x = 26; - pixel_y = 4; - req_access_txt = "5; 33" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dJk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"dJm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research/glass{ - name = "Research Pit"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dKs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"dLY" = ( -/obj/structure/table, -/obj/item/assembly/igniter, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"dMB" = ( -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"dMG" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"dMI" = ( -/obj/item/clothing/suit/apron/surgical, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"dMO" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"dNr" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dSp" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"dSr" = ( -/obj/item/chair, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"dTV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVI" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - layer = 2.4 - }, -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/execution/transfer) -"dVJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science) -"dWk" = ( -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"dWp" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"dYe" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"dZj" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible, -/obj/machinery/airalarm/engine{ - pixel_y = 22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"eaw" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"ebD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyer_shutters"; - name = "law office shutters" - }, -/turf/open/floor/plating, -/area/lawoffice) -"edl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"edJ" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"eex" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/quartermaster/office) -"eeQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"efu" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"efU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"egK" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"ehM" = ( -/obj/effect/decal/remains/human, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"eiV" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ekU" = ( -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"elk" = ( -/obj/structure/chair/office/dark, -/turf/open/floor/wood, -/area/lawoffice) -"epj" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"epJ" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"epV" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/engineering) -"eqD" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/department/crew_quarters/dorms) -"eta" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Supplies"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"euQ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"eyj" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/engineering) -"ezF" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/red, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ezJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"eAp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eAH" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"eAZ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"eCw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"eCK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"eDC" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"eEp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"eFj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"eFG" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8; - pixel_x = -32; - pixel_y = 32 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "garbagestacked" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"eHI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"eIL" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"eLt" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"eMC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"eNc" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/structure/rack, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"eNq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"eNF" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/closed/wall, -/area/space/nearstation) -"eOZ" = ( -/obj/structure/closet, -/obj/item/clothing/suit/judgerobe, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ePU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/security/brig) -"eQN" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"eQR" = ( -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/science/xenobiology) -"eQZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"eRp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eSB" = ( -/obj/machinery/computer/cryopod{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"eSL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"eVy" = ( -/obj/effect/turf_decal/arrows{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"eWi" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"eXo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/explab) -"eYr" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"eZA" = ( -/obj/item/stack/cable_coil/cut/random, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"fdQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fdS" = ( -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Engineering Delivery"; - req_access_txt = "10" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - freq = 1400; - location = "Engineering" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"fef" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Menagerie"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"ffJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"fgS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/opossum/poppy, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/engine) -"fhM" = ( -/obj/item/storage/secure/safe{ - pixel_x = -22 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"fjs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"fjD" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"fkH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Experimentation Lab Testing Zone"; - dir = 1; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/science/explab) -"fmh" = ( -/turf/open/floor/wood, -/area/maintenance/department/engine) -"fmL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"fmU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"fon" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"fow" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"fpT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"frj" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"ftp" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"ftW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"fuP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/wood, -/area/lawoffice) -"fvb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"fwe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"fwl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"fwr" = ( -/obj/machinery/door/airlock/maintenance/abandoned, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/science) -"fwI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"fxC" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"fym" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"fyF" = ( -/obj/structure/cable/yellow{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/machinery/power/rad_collector/anchored, -/turf/open/floor/engine, -/area/engine/supermatter) -"fyO" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"fzu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/clothing/gloves/color/black, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"fAx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"fBt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"fBz" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"fBZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"fFv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"fIu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms) -"fIN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"fIT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"fKj" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Mineral Room" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"fLG" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"fNv" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"fQf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"fRr" = ( -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"fRs" = ( -/turf/closed/wall, -/area/crew_quarters/heads/hor) -"fTY" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"fUA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"fWv" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"fZK" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"gam" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Service Door"; - req_one_access_txt = "35;28" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenwindowshutters"; - name = "kitchen shutters" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"gdJ" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/pen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"gdL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"geU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gfi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"ggg" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"giI" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/office) -"giO" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gjp" = ( -/obj/structure/table/wood, -/obj/structure/bedsheetbin, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"gjq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gjv" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Space Loop In" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"gjN" = ( -/obj/item/weldingtool, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gkR" = ( -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"gkS" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gkX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"glf" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"gmp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"gmO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gmZ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Access"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"gna" = ( -/turf/open/floor/plasteel/stairs/medium, -/area/maintenance/department/crew_quarters/dorms) -"gnq" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/engine/engineering) -"gpC" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"gpI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"gue" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gvf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/secondary/exit/departure_lounge) -"gwn" = ( -/obj/structure/sign/warning{ - pixel_y = 32 - }, -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gxe" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/structure/light_construct/small{ - dir = 8 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"gxq" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"gxK" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"gAG" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/lawoffice) -"gBb" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"gDR" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway Escape"; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gDZ" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"gEo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"gFo" = ( -/obj/structure/window/reinforced, -/obj/structure/table/glass, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28; - pixel_y = 3 - }, -/obj/machinery/button/door{ - id = "research_shutters_2"; - name = "Shutters Control Button"; - pixel_x = -28; - pixel_y = -7; - req_access_txt = "47" - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"gGy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gGA" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"gHZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"gIC" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"gIG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"gKz" = ( -/obj/structure/table/wood, -/obj/item/kirbyplants{ - icon_state = "plant-22"; - pixel_y = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"gKG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"gLF" = ( -/obj/machinery/vending/snack/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"gMm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/science/mixing) -"gMO" = ( -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"gNv" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/stairs/right, -/area/maintenance/department/crew_quarters/dorms) -"gNG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "assistantshutters"; - name = "Tool Storage Shutters Control"; - pixel_y = 24; - req_access_txt = "10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gPV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/wood, -/area/lawoffice) -"gQf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"gQo" = ( -/obj/machinery/vending/wardrobe/det_wardrobe, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"gSH" = ( -/turf/closed/wall, -/area/lawoffice) -"gSI" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"gUb" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"gVc" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/department/engine) -"gXg" = ( -/obj/item/extinguisher, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"gXZ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Fore"; - dir = 4; - network = list("ss13","engine") - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"gYo" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"haA" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods/fifty, -/obj/item/clothing/glasses/welding, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"hbl" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine/vacuum, -/area/space) -"heC" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Science Maintenance APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"hfZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hgD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/department/science) -"hiw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"hiY" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci4"; - location = "Sci3" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hjk" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"hjD" = ( -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"hka" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/camera{ - c_tag = "Atmospherics Console"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"hkQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hnu" = ( -/obj/machinery/button/door{ - id = "lawyer_shutters"; - name = "law office shutters control"; - pixel_x = 34; - pixel_y = -1; - req_access_txt = "38" - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"hon" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Gas to Filter" - }, -/turf/open/floor/engine, -/area/engine/engineering) -"hoS" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/engine/engineering) -"hqo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "assistantshutters"; - name = "Tool Storage Shutters Control"; - pixel_y = 24; - req_access_txt = "10" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hvW" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "containment blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"hwd" = ( -/obj/machinery/camera{ - c_tag = "Departure Lounge Port"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hwj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/security/execution/transfer) -"hxn" = ( -/obj/structure/chair, -/obj/item/clothing/glasses/regular, -/turf/open/floor/plating, -/area/maintenance/department/science) -"hxI" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"hyh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"hzc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/wrench, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"hzd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"hDG" = ( -/obj/machinery/door/airlock/engineering{ - name = "Auxillary Base Construction"; - req_one_access_txt = "32;47;48" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"hEX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"hFp" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/chair, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"hFy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hGB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"hHr" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"hIZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hKp" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/obj/machinery/power/rad_collector/anchored, -/turf/open/floor/engine, -/area/engine/supermatter) -"hMx" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"hOx" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"hOz" = ( -/obj/item/weldingtool, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"hPN" = ( -/obj/structure/table/glass, -/obj/item/clothing/glasses/science, -/obj/machinery/button/door{ - id = "xenobiomain"; - name = "Containment Blast Doors"; - pixel_x = 28; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hPU" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/item/surgical_drapes, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"hQz" = ( -/obj/structure/closet/emcloset/anchored, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"hQC" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"hSt" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Gas to Cooling Loop" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"hSC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"hSM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "Starboard Solar Access"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"hTl" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12 - }, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"hUt" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"hUw" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"hUJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"hVx" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"hXt" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/science) -"hXK" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"hYe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"hZB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"iab" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"ick" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/library) -"iej" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"igB" = ( -/obj/machinery/camera{ - c_tag = "Turbine Chamber"; - network = list("turbine") - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"igE" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xenobio4"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ihj" = ( -/obj/item/clothing/suit/toggle/labcoat/science, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"ihk" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ijF" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library) -"ijU" = ( -/obj/effect/spawner/lootdrop/organ_spawner, -/obj/structure/closet/crate, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"ikB" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plating, -/area/maintenance/department/science) -"ikO" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ilD" = ( -/obj/machinery/processor/slime, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ilE" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"imE" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ioj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light{ - light_color = "#e8eaff" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"iop" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ioF" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"iqc" = ( -/turf/open/floor/plasteel/stairs/right, -/area/maintenance/department/crew_quarters/dorms) -"irM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"itl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/xenobio{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"iuM" = ( -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ivO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - weaponscheck = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"iwe" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iyg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"iyJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"izB" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms) -"izF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"iAx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering) -"iBJ" = ( -/obj/machinery/camera{ - c_tag = "Telecomms External Fore"; - dir = 1; - network = list("tcomms"); - start_active = 1 - }, -/obj/structure/cable/yellow{ - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"iCe" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - target_pressure = 4500 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"iCs" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"iCV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plating, -/area/security/execution/transfer) -"iEQ" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"iEU" = ( -/obj/effect/spawner/lootdrop/keg, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"iFI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/engine/engineering) -"iGJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone3) -"iJi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"iKb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"iLh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/engineering) -"iLl" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"iLR" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"iPj" = ( -/obj/machinery/igniter{ - id = "xenoigniter"; - luminosity = 2 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"iPz" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Test Lab"; - dir = 4; - network = list("xeno","rd") - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"iPH" = ( -/obj/machinery/vr_sleeper{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"iPO" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"iPU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"iSz" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"iTF" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"iVJ" = ( -/obj/effect/spawner/lootdrop/organ_spawner, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"iWV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"iXx" = ( -/obj/machinery/light/small, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"jcT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jen" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jeq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"jgr" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library) -"jhk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"jhD" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"jjC" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/lawoffice) -"jrG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Engineering"; - departmentType = 4; - name = "Engineering RC"; - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"jsf" = ( -/obj/item/toy/katana, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"jsj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"jsD" = ( -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"jtf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"juw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"jvi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hos) -"jwe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"jxl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"jxK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jzz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"jzE" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"jAy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"jBh" = ( -/obj/structure/rack, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"jBn" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"jCv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jDA" = ( -/obj/item/chair, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"jEX" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"jFw" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"jFO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet, -/area/library/lounge) -"jHP" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/bottle/tequila{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"jOB" = ( -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"jPf" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/kitchen/knife, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"jQh" = ( -/obj/item/stack/sheet/animalhide/xeno, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science) -"jRG" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"jSa" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/chapel/main/monastery) -"jTh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"jTu" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"jTU" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"jUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"jXh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"jXA" = ( -/obj/structure/table, -/obj/item/stack/ore/iron, -/turf/open/floor/plating, -/area/maintenance/department/science) -"jXF" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"jXV" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"jYe" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jYh" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Supply to Virology" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/engine) -"jZG" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/chemistry) -"kas" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engine/atmos) -"kaR" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"kfh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"kfM" = ( -/obj/structure/closet, -/obj/machinery/light/small, -/obj/item/storage/book/bible, -/obj/item/storage/book/bible, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/chapel/office) -"kgR" = ( -/obj/structure/toilet/secret/low_loot{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"khk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"kjK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/AIsatextAP) -"kkk" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/crew_quarters/dorms) -"kkQ" = ( -/obj/machinery/vending/cola/pwr_game, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"klb" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/quartermaster/sorting) -"klo" = ( -/obj/structure/dresser, -/obj/structure/mirror{ - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"klB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"klV" = ( -/obj/item/clothing/under/rank/civilian/clown/sexy, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"kmd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"kmn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"koz" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kpK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"krU" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"ksf" = ( -/obj/item/stack/tile/carpet, -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"kvj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kwm" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"kxj" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"kxs" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"kyv" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"kAa" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"kDf" = ( -/obj/machinery/light/small, -/turf/open/floor/carpet/black, -/area/chapel/office) -"kDJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"kDY" = ( -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"kEM" = ( -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kEW" = ( -/obj/machinery/smartfridge/disks{ - pixel_y = 2 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/hydroponics) -"kFm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/tcommsat/computer) -"kFu" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"kFx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Law Office Maintenance"; - req_access_txt = "38" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"kFD" = ( -/obj/structure/closet/l3closet, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"kGe" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/sign/departments/holy{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"kIo" = ( -/obj/structure/table, -/obj/item/paper_bin{ - layer = 2.9 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"kIO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kJo" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"kJw" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Firing Range Target" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"kKI" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"kNf" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - icon_state = "right"; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"kPi" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"kQy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"kQZ" = ( -/obj/structure/closet, -/obj/item/stack/spacecash/c10, -/obj/item/stack/spacecash/c10, -/obj/item/stack/spacecash/c10, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"kRq" = ( -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"kRK" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/bz, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"kSb" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"kSF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"kSO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Port Emergency Storage" - }, -/turf/open/floor/plating, -/area/storage/emergency/port) -"kTj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"kTR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"kWQ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"kXx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main/monastery) -"kYM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lcU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lcZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/gateway) -"ldQ" = ( -/obj/structure/floodlight_frame, -/turf/open/floor/plating, -/area/maintenance/department/science) -"lem" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "executionflash"; - pixel_y = 25 - }, -/obj/machinery/igniter{ - id = "secigniter" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"lfx" = ( -/obj/structure/table, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"lhA" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"liR" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"lje" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"lms" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/department/engine) -"lnn" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"lnr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"loz" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"loL" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4; - filter_type = "n2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"lqc" = ( -/obj/item/toy/gun, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lqy" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"lrM" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"lxI" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/chapel/monastery) -"lzJ" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/carpet, -/area/chapel/office) -"lAf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"lAs" = ( -/turf/closed/wall, -/area/quartermaster/sorting) -"lAR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"lBP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lEn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"lFh" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"lGp" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"lGv" = ( -/obj/machinery/door/airlock/atmos/abandoned{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lGS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"lHc" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lHX" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lIr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lJr" = ( -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/science) -"lJI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lKL" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Starboard Emergency Storage" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"lMU" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lNW" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/science) -"lQn" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"lQQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgespace"; - name = "bridge external shutters" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"lQX" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lTC" = ( -/obj/item/shard, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"lUO" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"lWy" = ( -/turf/open/floor/plating, -/area/maintenance/department/science) -"lWH" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"lWJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"lXb" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Gas to Mix" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"lXc" = ( -/obj/structure/table, -/obj/item/clothing/head/beret, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"lXJ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"mal" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"mau" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"maW" = ( -/obj/structure/table/glass, -/obj/item/weldingtool/mini, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"mbe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"mci" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engine/engineering) -"mdL" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen{ - layer = 3.1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"meF" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"mfC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mgz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"mhl" = ( -/obj/machinery/power/emitter, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"mhn" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mhK" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"miw" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Fore"; - dir = 1; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"mjn" = ( -/obj/machinery/jukebox, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"mjK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"mlr" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"mmv" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Supplies"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"mnG" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"mpd" = ( -/obj/structure/cable/yellow{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/obj/machinery/power/rad_collector/anchored, -/turf/open/floor/engine, -/area/engine/supermatter) -"mpy" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/blue, -/turf/open/floor/wood, -/area/lawoffice) -"mql" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"mqp" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"msX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/security/execution/transfer) -"mtu" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/reagent_containers/food/snacks/donut, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/security/brig) -"mtI" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Xenobiology APC"; - pixel_x = -25 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"mvm" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "Starboard Solar APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"mwg" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/ammo_box/foambox, -/obj/item/ammo_box/foambox, -/obj/item/gun/ballistic/shotgun/toy, -/obj/item/gun/ballistic/shotgun/toy, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"mwG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"mxy" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow, -/turf/open/floor/plating, -/area/tcommsat/computer) -"myu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"mzl" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plating, -/area/security/execution/transfer) -"mzE" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/science/storage) -"mzU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/department/engine) -"mCe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"mDW" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"mEu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"mES" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Surgical Room" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"mHy" = ( -/obj/item/storage/fancy/cigarettes/cigpack_shadyjims, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"mIa" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"mJp" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"mKc" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"mKk" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"mLB" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/security/brig) -"mMz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"mQm" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"mSc" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/science) -"mTS" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"mVM" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"mXq" = ( -/obj/item/taperecorder, -/obj/item/cartridge/lawyer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/lawoffice) -"mZE" = ( -/turf/open/space/basic, -/area/space/nearstation) -"naq" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"naS" = ( -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"nbu" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/space) -"ncm" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"ndI" = ( -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"nev" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"new" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nfi" = ( -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"nfz" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nge" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"ngp" = ( -/obj/item/chair/stool, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"nih" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"niy" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/cookie, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"nku" = ( -/obj/machinery/door/airlock/centcom{ - name = "Crematorium"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"nnh" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/item/stack/spacecash/c10, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"noC" = ( -/obj/machinery/vending/kink, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"noM" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"npE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nqu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"nqV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"nsy" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/construction/mining/aux_base"; - dir = 8; - name = "Auxillary Base Construction APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"nsD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"nsJ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ntj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"nuv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"nxT" = ( -/obj/machinery/smartfridge/extract/preloaded, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"nyB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/central) -"nyO" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"nzD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"nAs" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"nAY" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"nBw" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"nBL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"nDo" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nDx" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"nEb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"nGi" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"nIm" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"nIU" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"nJI" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/sign/plaques/kiddie/perfect_drone{ - pixel_y = 32 - }, -/turf/open/floor/engine, -/area/science/explab) -"nKo" = ( -/obj/structure/lattice, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"nLl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nMG" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 26 - }, -/obj/machinery/camera/motion{ - c_tag = "Telecomms Monitoring"; - network = list("tcomms") - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"nNJ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nNN" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nOY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"nPA" = ( -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"nQc" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nRM" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/engineering) -"nSj" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nSo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/lawoffice) -"nTr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nUQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/engine/supermatter) -"nVU" = ( -/obj/item/spear, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nWP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"nYb" = ( -/obj/structure/table_frame/wood, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"nYn" = ( -/obj/structure/sign/warning/docking, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"nZw" = ( -/obj/machinery/door/airlock/abandoned{ - name = "Backup Laboratory" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"obj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"obP" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/department/science) -"odM" = ( -/obj/effect/landmark/barthpot, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library/lounge) -"oep" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ofN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ofX" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ohR" = ( -/obj/item/chair, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"olc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Bedroom"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"onX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "assistantshutters"; - name = "storage shutters" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"ooh" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/wrench/medical, -/turf/open/floor/engine, -/area/medical/chemistry) -"opz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"ore" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/engine/engineering) -"ost" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ous" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_y = -24; - req_access_txt = "11" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ouv" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ovB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"ovM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Port Fore" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"owS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"oxw" = ( -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/engineering) -"oyF" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/storage/primary) -"ozO" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"oAw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"oAW" = ( -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"oBb" = ( -/obj/structure/sign/warning/biohazard, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"oCn" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/carpet, -/area/lawoffice) -"oCX" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"oDP" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"oEA" = ( -/turf/closed/wall, -/area/construction/mining/aux_base) -"oEG" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/circuitboard/computer/operating, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"oEW" = ( -/obj/machinery/button/door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_y = -2; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/button/ignition{ - id = "xenoigniter"; - pixel_y = 7 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"oFf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"oFo" = ( -/obj/structure/closet/emcloset/anchored, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"oFI" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/blood/old, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"oGw" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/disposal/incinerator) -"oHa" = ( -/obj/machinery/power/emitter/anchored{ - dir = 8; - state = 2 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/engineering) -"oKa" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"oKv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/engine/engineering) -"oKJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"oLR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/exit/departure_lounge) -"oMN" = ( -/turf/open/floor/plasteel/stairs/left, -/area/maintenance/department/crew_quarters/dorms) -"oNE" = ( -/obj/structure/chair/office/light, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"oPx" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"oPy" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock) -"oQm" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "commonmining_home"; - name = "SS13: Common Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/meta; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"oRX" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"oSc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"oSL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"oTl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"oTp" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"oTC" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"oUa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"oWu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/engineering) -"oWw" = ( -/obj/item/flashlight, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"oXe" = ( -/obj/structure/table/glass, -/obj/item/mmi, -/obj/item/clothing/mask/balaclava, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/execution/transfer) -"oXq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Cooling Loop Bypass" - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"oYj" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"oZW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"paU" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/engine/engineering) -"pbm" = ( -/obj/machinery/door/airlock/external{ - name = "Pod Docking Bay" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/chapel/dock) -"pbI" = ( -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/explab) -"pbR" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"pdq" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"pdW" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/science/explab) -"peE" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"pfz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"pfB" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/armory) -"pfP" = ( -/obj/structure/table, -/obj/item/storage/box/syringes, -/obj/machinery/camera{ - c_tag = "Xenobiology Computers"; - dir = 4; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"pgH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"phJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"phS" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"pia" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"pjH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"pkM" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "22" - }, -/turf/open/floor/plating, -/area/chapel/office) -"plA" = ( -/obj/structure/musician/piano, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"pmB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2 to Pure" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"pnU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"poP" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"pps" = ( -/turf/closed/wall, -/area/engine/break_room) -"ppQ" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"pqP" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"prQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/supermatter) -"psd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Filter" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/engine/supermatter) -"puw" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"pvK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"pwj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"pwS" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"pxD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/chemistry) -"pzF" = ( -/mob/living/simple_animal/opossum, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"pBD" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"pBJ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"pCo" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"pDP" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"pEH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/chair/comfy{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"pEL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"pFe" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"pFy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"pGe" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"pHo" = ( -/obj/machinery/computer/bounty{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/heads/hop) -"pKd" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"pMG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"pNy" = ( -/obj/structure/closet/firecloset, -/obj/machinery/camera{ - c_tag = "Toxins Launch Area"; - network = list("ss13","rd") - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"pOr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"pQw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"pVD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/department/engine) -"pWm" = ( -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"pWF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"pWT" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"pXc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet, -/area/library) -"pXg" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/extinguisher, -/obj/machinery/light, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"pXT" = ( -/obj/item/kirbyplants, -/obj/machinery/power/apc{ - areastring = "/area/lawoffice"; - dir = 8; - name = "Law Office APC"; - pixel_x = -24 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"pYh" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"pYw" = ( -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"pYC" = ( -/obj/structure/sign/warning{ - pixel_y = -32 - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/maintenance/department/engine) -"qar" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"qbp" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"qbZ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"qcD" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qcH" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qdi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Containment Pen Access"; - req_access_txt = "55" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"qdj" = ( -/obj/structure/disposalpipe/segment, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qeY" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"qhE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qjx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"qkM" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"qni" = ( -/obj/machinery/smartfridge/organ/preloaded, -/turf/closed/wall, -/area/medical/surgery) -"qnT" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/maintenance/department/science) -"qpd" = ( -/obj/machinery/atmospherics/pipe/manifold/green/visible{ - dir = 8 - }, -/obj/structure/cable/yellow{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"qpS" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qtA" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"qtF" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qtO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qxq" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Air Out" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"qyF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qAM" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"qBv" = ( -/obj/item/clothing/head/ushanka, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qDJ" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_circuit_printer, -/obj/item/integrated_electronics/debugger, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"qEN" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/closed/wall, -/area/crew_quarters/bar) -"qFu" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qGu" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"qGZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "ce_privacy"; - name = "Privacy shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"qHI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"qIC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"qIO" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/department/science) -"qLI" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - layer = 4 - }, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"qMi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"qOE" = ( -/turf/open/floor/plasteel/dark, -/area/library/lounge) -"qOH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qPB" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"qRl" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 29 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"qRm" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"qTV" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qUw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qVk" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/space/basic, -/area/maintenance/disposal/incinerator) -"qVP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qWo" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/chapel/monastery) -"qWG" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/engine/engineering) -"qWM" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -2 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"qXq" = ( -/obj/machinery/door/airlock/maintenance/abandoned, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qXH" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qYi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"qYq" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/item/wrench, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qYS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"rar" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"rdB" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"reH" = ( -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"reV" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"rgn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rgs" = ( -/obj/structure/table, -/obj/item/instrument/eguitar, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"rhr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/department/engine) -"riF" = ( -/obj/machinery/computer/arcade, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"riW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"rjF" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"rmC" = ( -/turf/open/space/basic, -/area/space/station_ruins) -"rnr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"rnE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"roc" = ( -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ros" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/chapel/dock) -"rrb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"rrU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"rse" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"rsZ" = ( -/obj/machinery/camera/motion{ - c_tag = "Telecomms External Access"; - dir = 1; - network = list("tcomms") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"rui" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small{ - dir = 8; - light_color = "#d8b1b1" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rvH" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - dir = 4; - freq = 1400; - location = "Medbay" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Medbay Delivery"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"rxa" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"rxQ" = ( -/obj/machinery/door/airlock/abandoned{ - id_tag = "PottySci"; - name = "Science Bathroom" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rxV" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"rzp" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/rods/fifty, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"rzF" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/chapel/asteroid/monastery) -"rBh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science) -"rEh" = ( -/obj/structure/table/glass, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rFq" = ( -/obj/structure/chair, -/obj/item/reagent_containers/food/snacks/donkpocket, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"rHA" = ( -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"rJg" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/engine) -"rJZ" = ( -/obj/docking_port/stationary{ - area_type = /area/construction/mining/aux_base; - dheight = 4; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "aux base zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/small; - width = 9 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"rKr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"rKL" = ( -/obj/item/trash/cheesie, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"rLi" = ( -/obj/machinery/button/door{ - id = "shootshut"; - name = "shutters control"; - pixel_x = 28 - }, -/obj/item/ammo_casing/shotgun/improvised, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"rMV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/maintenance/department/engine) -"rNi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/pipedispenser/disposal/transit_tube, -/turf/open/floor/plasteel, -/area/engine/atmos) -"rNB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/science) -"rPg" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"rPW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing) -"rSH" = ( -/obj/item/trash/can, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"rTd" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"rWE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"rXT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"rYC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "public external airlock" - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"sbk" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/dorms) -"sbY" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/lawoffice) -"sci" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/science) -"scp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Auxillary Base Maintenance"; - req_access_txt = "12"; - req_one_access_txt = "32;47;48" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"scz" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ - dir = 8; - name = "Engineering APC"; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"sdk" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Armory External"; - dir = 1 - }, -/turf/open/space, -/area/space/nearstation) -"sgc" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"shH" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"sij" = ( -/obj/structure/closet, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"sjC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plasteel, -/area/engine/engineering) -"skw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/maintenance/department/security/brig) -"slJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"smv" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Cooling Loop to Gas" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"spz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/maintenance/department/science) -"sqh" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"sqQ" = ( -/turf/open/floor/plating, -/area/maintenance/disposal) -"srZ" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ssx" = ( -/obj/item/shard, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"stQ" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/sign/departments/science{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"sut" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"svA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"svN" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/departments/restroom{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"swg" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"sww" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/reagent_containers/food/snacks/meat/slab/monkey, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"syn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/security/brig) -"syQ" = ( -/obj/machinery/vending/games, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"szG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"sAK" = ( -/obj/item/clothing/mask/gas/plaguedoctor, -/turf/open/floor/plating, -/area/maintenance/department/science) -"sBA" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"sEB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/science) -"sEN" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"sGr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"sIK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"sJp" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/security/execution/transfer) -"sJr" = ( -/turf/open/floor/wood, -/area/lawoffice) -"sKa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"sNz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"sOC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"sQt" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"sUP" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/meter, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"sWj" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"sWW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "4-8" - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"sXi" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"sXR" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"sYQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sZh" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/disposal) -"sZu" = ( -/obj/item/storage/backpack/satchel/explorer, -/turf/open/floor/plating, -/area/maintenance/department/science) -"tan" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/centcom{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"tap" = ( -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"taA" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"taT" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 4; - name = "euthanization chamber freezer" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tcY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"tdp" = ( -/obj/structure/rack, -/obj/item/stack/packageWrap, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/hand_labeler, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"tdB" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"tdL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/supermatter) -"tfw" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"tfx" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"tfP" = ( -/obj/item/beacon, -/turf/open/floor/engine, -/area/science/xenobiology) -"tfZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall, -/area/maintenance/department/security/brig) -"thA" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"thW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"tim" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Testing Lab Maintenance"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/science/explab) -"tix" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"tkL" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"tlc" = ( -/obj/machinery/recharger, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"tlp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"tlw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"tlN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"tlV" = ( -/obj/structure/reflector/single/anchored{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/engineering) -"tnP" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"tnY" = ( -/obj/machinery/button/door{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - pixel_x = -26; - req_one_access_txt = "32;47;48" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"tpb" = ( -/obj/item/reagent_containers/food/snacks/donut, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"tqO" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tqX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"ttS" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/mob/living/simple_animal/pet/bumbles, -/turf/open/floor/plasteel, -/area/hydroponics) -"tue" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"tuy" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Test Chamber"; - dir = 8; - network = list("xeno","rd") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"tvj" = ( -/obj/structure/festivus{ - anchored = 1; - desc = "A pole for dancing."; - name = "pole" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"tvP" = ( -/obj/item/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"twv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"typ" = ( -/obj/structure/table/glass, -/obj/item/hemostat, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"tyL" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"tzH" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/lab) -"tAK" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"tCP" = ( -/obj/docking_port/stationary/public_mining_dock, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"tDn" = ( -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"tHk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/sign/directions/evac{ - pixel_x = 32; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tIS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"tJr" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters_2"; - name = "research shutters" - }, -/turf/open/floor/plasteel, -/area/science/lab) -"tLP" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/quartermaster/warehouse) -"tOD" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"tRc" = ( -/obj/structure/ore_box, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/engine) -"tSL" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"tTl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tTZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"tXn" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"uaC" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/maintenance/department/crew_quarters/dorms) -"uaE" = ( -/obj/effect/decal/cleanable/oil{ - icon_state = "floor6" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"uaO" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"uaP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ubW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing) -"udl" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"uek" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"ueP" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/button/door{ - id = "xenobiomain"; - name = "Containment Blast Doors"; - pixel_x = 28; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ueV" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"ueX" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_construction, -/turf/open/floor/plasteel, -/area/engine/engineering) -"ufa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ugC" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"uiP" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"ujI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ukn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/engine) -"ukp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Gas" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"ulu" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"ulY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"ume" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"uoj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"uos" = ( -/obj/machinery/computer/camera_advanced/base_construction, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"uoS" = ( -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"upc" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"uqJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/transfer) -"urP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/explab) -"utg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"uug" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science) -"uun" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"uuS" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"uvo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"uvq" = ( -/obj/structure/table, -/obj/item/dice/d20, -/turf/open/floor/plating, -/area/maintenance/department/science) -"uwb" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"uwX" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uxP" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Starboard"; - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uzh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/engine, -/area/engine/supermatter) -"uzn" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"uAU" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/carpet, -/area/lawoffice) -"uAZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Experimentation Lab Mixing Area"; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/science/explab) -"uCS" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"uHG" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"uIn" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uIB" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering) -"uLF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"uMe" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uMo" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/plasteel, -/area/engine/engineering) -"uMt" = ( -/obj/effect/turf_decal/plaque, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uQR" = ( -/obj/item/ammo_casing/shotgun/beanbag, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"uRk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"uUQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"uVf" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen/fountain, -/obj/item/stamp/law, -/turf/open/floor/carpet, -/area/lawoffice) -"uXG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"uXH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard) -"uZb" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"vay" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"vco" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"veF" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"veM" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vgp" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vhk" = ( -/obj/structure/chair, -/turf/open/floor/carpet, -/area/lawoffice) -"vjd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"vli" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/machinery/light, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engineering) -"vlC" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"vlF" = ( -/obj/item/coin/silver, -/obj/effect/decal/cleanable/oil{ - icon_state = "floor5" - }, -/obj/structure/light_construct/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"vmG" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/analyzer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"vmY" = ( -/obj/structure/sign/warning/deathsposal{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"voh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"vsk" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"vsw" = ( -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Starboard"; - dir = 8; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"vsJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vtl" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"vtT" = ( -/turf/open/floor/plating, -/area/maintenance/solars/port) -"vuP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/emergency/starboard) -"vuQ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/department/science) -"vxp" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced, -/obj/item/assembly/mousetrap, -/turf/open/floor/engine, -/area/science/explab) -"vxr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"vzz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness/recreation) -"vzA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vzP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"vzT" = ( -/obj/structure/table, -/obj/item/stack/rods{ - amount = 5; - layer = 3.3 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"vAq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"vBE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"vCC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"vGg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"vHf" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"vIc" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"vKq" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vMx" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"vOw" = ( -/obj/machinery/door/airlock/grunge{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/library) -"vRi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/science) -"vRm" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering Port Storage" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"vTL" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"vTN" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vVO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/cable/yellow{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"vYN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"wbB" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "External Gas to Loop" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/engineering) -"wbF" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/machinery/camera{ - c_tag = "Engineering Starboard Aft"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"wcs" = ( -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"wdx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 6 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"weL" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wfc" = ( -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/maintenance/department/science) -"wfs" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"wfG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hor) -"wfO" = ( -/mob/living/simple_animal/hostile/retaliate/poison/snake, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wfP" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"wig" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"wiB" = ( -/obj/item/shard{ - icon_state = "small" - }, -/obj/item/stack/cable_coil/red, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wjm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"wjQ" = ( -/obj/machinery/computer/shuttle/mining/common{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wkZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"wlK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"wnJ" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/science/mixing) -"woq" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wqu" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"wrU" = ( -/obj/machinery/photocopier, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/lawoffice) -"wtE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"wun" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"wwr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wwG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wxb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"wxJ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "prison release"; - name = "prisoner processing blast door" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"wzb" = ( -/obj/structure/chair, -/turf/open/floor/wood, -/area/maintenance/department/engine) -"wAI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"wBb" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/explab) -"wBg" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "Potty1"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/department/crew_quarters/bar) -"wDl" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engine/engineering) -"wDm" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wDZ" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"wEn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"wFT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/science) -"wIo" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"wIv" = ( -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - name = "Engineering Maintenance APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wKa" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"wLo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "cmoshutters"; - name = "Privacy shutters" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"wMF" = ( -/obj/effect/spawner/lootdrop/three_course_meal, -/obj/effect/spawner/lootdrop/three_course_meal, -/obj/structure/closet/crate, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/crew_quarters/dorms) -"wMM" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wMX" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/supermatter) -"wNq" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wOa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wOf" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"wOS" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/mixing) -"wQU" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/cargo) -"wRk" = ( -/obj/structure/rack, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"wRz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/security/brig) -"wRI" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Brig Maintenance APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wTD" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/clothing/glasses/sunglasses, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/lawoffice) -"wTO" = ( -/obj/structure/frame/computer, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/science) -"wUf" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/storage/emergency/port) -"wUz" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"wVC" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Sci"; - location = "Bar1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"wXu" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"wYu" = ( -/obj/machinery/door/poddoor/shutters{ - id = "shootshut" - }, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"wYK" = ( -/obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/engine/supermatter) -"xah" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/cargo) -"xaO" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"xaQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"xbJ" = ( -/turf/open/floor/plasteel/dark, -/area/maintenance/department/crew_quarters/dorms) -"xee" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"xer" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"xeB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/lawoffice) -"xgh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"xgG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"xhj" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/carpet, -/area/library/lounge) -"xhE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"xhI" = ( -/obj/structure/cable/yellow{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/engineering) -"xja" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Library APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/library) -"xjc" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/library) -"xje" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xjg" = ( -/mob/living/simple_animal/hostile/retaliate/goose, -/turf/open/floor/wood, -/area/maintenance/department/crew_quarters/dorms) -"xjK" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = -27 - }, -/obj/structure/rack, -/obj/item/taperecorder, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"xjT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xlg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/turf/open/floor/plating, -/area/maintenance/department/science) -"xlA" = ( -/obj/machinery/door/airlock/maintenance/abandoned, -/turf/open/floor/plating, -/area/maintenance/department/science) -"xmp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"xmE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) -"xnm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/tcommsat/computer) -"xnP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"xpr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xpD" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/department/science) -"xsO" = ( -/obj/item/ectoplasm, -/turf/open/floor/plating, -/area/maintenance/department/science) -"xuv" = ( -/obj/item/broken_bottle, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"xvO" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"xxw" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xxO" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"xxS" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"xyl" = ( -/obj/structure/table, -/obj/item/assembly/timer, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"xyB" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/security/brig) -"xzp" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xzR" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"xCV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"xDj" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xEx" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/science/storage) -"xFl" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/tcommsat/server"; - dir = 1; - layer = 4; - name = "Telecomms Server APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"xGc" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space/station_ruins) -"xIx" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"xJy" = ( -/obj/structure/chair/comfy/black, -/obj/structure/sign/plaques/kiddie{ - desc = "An embossed piece of paper from the Third University of Harvard."; - name = "\improper 'Diploma' frame"; - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"xKc" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"xLi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit/departure_lounge) -"xLC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"xNx" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/junction/flip, -/turf/open/space/basic, -/area/space/nearstation) -"xNy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/engineering) -"xOC" = ( -/obj/machinery/door/airlock/external{ - name = "Construction Zone" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"xPa" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/engine, -/area/science/explab) -"xQc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/door/airlock{ - name = "Port Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/freezer, -/area/storage/emergency/port) -"xQk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"xSd" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/department/chapel/monastery) -"xSX" = ( -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"xSZ" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"xVt" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/structure/rack, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"xWl" = ( -/obj/item/pen, -/obj/item/paper_bin{ - layer = 2.9 - }, -/obj/structure/table/glass, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"xYV" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel/monastery) -"ybX" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"ycr" = ( -/obj/structure/target_stake, -/obj/item/target/syndicate, -/turf/open/floor/plating, -/area/maintenance/department/security/brig) -"ycx" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/department/engine) -"ydf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/engine) -"yfO" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ygZ" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/department/cargo) -"ymb" = ( -/obj/machinery/camera{ - c_tag = "Engineering Telecomms Access"; - dir = 8; - network = list("tcomms") - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engine/engineering) +"aaa" = (/turf/open/space/basic,/area/space) +"aab" = (/obj/machinery/holopad,/obj/effect/landmark/start/cyborg,/mob/living/simple_animal/bot/secbot/pingsky,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aac" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aad" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"aae" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aaf" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aag" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering) +"aah" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aai" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aaj" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aak" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aal" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/open/floor/plating,/area/engine/engineering) +"aam" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aan" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) +"aao" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) +"aap" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aaq" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) +"aar" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/tank/internals/plasma,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) +"aas" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) +"aat" = (/obj/structure/closet/wardrobe/green,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/poster/official/fashion{pixel_y = -32},/obj/structure/sign/poster/official/fashion{pixel_y = -32},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aau" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/sign/poster/official/hydro_ad{pixel_y = 32},/turf/open/floor/plasteel,/area/hydroponics) +"aav" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aaw" = (/obj/structure/sign/poster/official/hydro_ad,/turf/closed/wall,/area/hydroponics) +"aax" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/poster/official/medical_green_cross{pixel_x = 32},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"aay" = (/obj/structure/sign/poster/official/medical_green_cross,/turf/closed/wall,/area/medical/medbay/central) +"aaz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/official/medical_green_cross{pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"aaA" = (/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) +"aaB" = (/obj/structure/closet/masks,/obj/item/reagent_containers/food/snacks/deadmouse,/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/engine) +"aaC" = (/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"aaD" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/clothing/mask/balaclava,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaE" = (/obj/machinery/light/small,/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaF" = (/turf/closed/wall,/area/crew_quarters/fitness/pool) +"aaG" = (/obj/structure/closet,/obj/item/weldingtool,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaH" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaI" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"aaJ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"aaK" = (/obj/machinery/light{dir = 1; light_color = "#706891"},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"aaL" = (/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) +"aaM" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 8},/area/crew_quarters/fitness/pool) +"aaN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaO" = (/turf/open/pool,/area/crew_quarters/fitness/pool) +"aaP" = (/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) +"aaQ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aaR" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Pool"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/poster/official/walk{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) +"aaW" = (/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) +"aaX" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"aaY" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"aaZ" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"aba" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"abb" = (/obj/machinery/camera{c_tag = "Fitness Room"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"abc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding/corner,/area/crew_quarters/fitness/pool) +"abd" = (/obj/structure/closet/lasertag/red,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abe" = (/obj/machinery/vending/kink,/obj/machinery/status_display/evac{pixel_x = 32; pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abf" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/department/science) +"abg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/lasertag/blue,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abj" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) +"abk" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"abl" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"abm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) +"abn" = (/obj/machinery/pool/filter{pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) +"abo" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) +"abp" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"abq" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) +"abr" = (/obj/machinery/pool/drain,/turf/open/pool,/area/crew_quarters/fitness/pool) +"abs" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness/pool) +"abt" = (/obj/structure/pool/Rboard,/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) +"abu" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"abv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"abw" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/table/glass,/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) +"abx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/athletic_mixed,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/yellow,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"aby" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space/nearstation) +"abz" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"abA" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding/corner{dir = 4},/area/crew_quarters/fitness/pool) +"abB" = (/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) +"abC" = (/obj/machinery/light,/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) +"abD" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 1},/area/crew_quarters/fitness/pool) +"abE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/pool"; name = "Pool APC"; pixel_y = -24},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) +"abF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/crew_quarters/fitness/pool) +"abG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"abH" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/door/airlock/public/glass{name = "Pool"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"abI" = (/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"abJ" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "MiniSat External Fore"; dir = 1; network = list("minisat")},/turf/open/space,/area/space/nearstation) +"abK" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"abL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abN" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space) +"abO" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"abP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abS" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"abT" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Pool"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) +"abU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/xmastree,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"abV" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"abW" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"abX" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"abY" = (/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"abZ" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/effect/landmark/xmastree,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"acc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acd" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"ace" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acf" = (/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber North"; dir = 1; network = list("minisat")},/obj/machinery/light,/obj/machinery/flasher{id = "AI"; pixel_y = -24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"ach" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"aci" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/ai_monitored/turret_protected/ai) +"acj" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/landmark/start/ai/secondary,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = -27},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"ack" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber Center"; network = list("minisat")},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/status_display/ai{pixel_y = 32},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acl" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/ai"; dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/effect/landmark/start/ai/secondary,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acm" = (/obj/machinery/camera/motion{c_tag = "MiniSat External Port"; dir = 8; network = list("minisat")},/turf/open/space,/area/space/nearstation) +"acn" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber West"; dir = 4; network = list("minisat")},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"aco" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acq" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai"; name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acr" = (/obj/machinery/ai_slipper{uses = 8},/obj/machinery/power/terminal{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acs" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "AI Satellite turret control"; pixel_x = -5; pixel_y = -24},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"act" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acu" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber East"; dir = 8; network = list("minisat")},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"acv" = (/obj/machinery/camera/motion{c_tag = "MiniSat External Starboard"; dir = 4; network = list("minisat")},/turf/open/space,/area/space/nearstation) +"acw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acy" = (/obj/effect/landmark/start/ai,/obj/item/radio/intercom{freerange = 1; name = "Common Channel"; pixel_x = -27; pixel_y = -9},/obj/item/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_y = -31},/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -9},/obj/machinery/newscaster/security_unit{pixel_x = -28; pixel_y = -28},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 28; pixel_y = -28},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acz" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acA" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acB" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acC" = (/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acD" = (/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber South"; network = list("minisat")},/obj/machinery/light{dir = 1},/obj/machinery/flasher{id = "AI"; pixel_y = 20},/obj/machinery/status_display/ai{pixel_y = 37},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acE" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"acF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/AIsatextAS) +"acG" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acI" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/ai_monitored/turret_protected/ai) +"acJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acL" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/ai_slipper{uses = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acM" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) +"acN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space,/area/space/nearstation) +"acO" = (/obj/structure/grille/broken,/turf/open/space,/area/space/nearstation) +"acP" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"acQ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"acR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"acS" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"acT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"acU" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"acV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"acW" = (/obj/machinery/computer/station_alert,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"acX" = (/obj/machinery/computer/monitor,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"acY" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"acZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"ada" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"adb" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"adc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"add" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"ade" = (/obj/structure/table/glass,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass{amount = 20; pixel_x = 3; pixel_y = -4},/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/mmi,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adf" = (/obj/machinery/light/small{dir = 1},/obj/machinery/computer/rdconsole/robotics,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adg" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adi" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adk" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/aisat_interior"; dir = 8; name = "MiniSat Antechamber APC"; pixel_x = -24},/obj/machinery/recharger,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adl" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adm" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adn" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"ado" = (/obj/structure/table,/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/item/paper_bin,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adq" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"ads" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adt" = (/obj/machinery/camera{c_tag = "MiniSat Maintenance Port Fore"; dir = 1; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adv" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adx" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"ady" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adz" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber Observation"; dir = 1; network = list("minisat")},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) +"adB" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adD" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Waste Out"},/obj/machinery/camera{c_tag = "MiniSat Maintenance Starboard Fore"; dir = 1; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"adG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adH" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) +"adM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Observation"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"adN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"adO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"adP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"adQ" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"adR" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"adS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"adU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"adV" = (/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) +"adW" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Port Fore"; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) +"adX" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) +"adY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"adZ" = (/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAS) +"aea" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Starboard Fore"; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAS) +"aeb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"aec" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"aed" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/space/nearstation) +"aee" = (/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"aef" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"aeg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/porta_turret/ai{installation = /obj/item/gun/energy/e_gun},/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/aisat_interior) +"aeh" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"aei" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aej" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/porta_turret/ai{installation = /obj/item/gun/energy/e_gun},/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/aisat_interior) +"aek" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"ael" = (/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"aem" = (/turf/closed/wall/r_wall,/area/security/prison) +"aen" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/prison) +"aeo" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/potato,/obj/item/seeds/carrot,/obj/item/seeds/corn,/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/prison) +"aep" = (/obj/item/cultivator,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/prison) +"aeq" = (/obj/machinery/hydroponics/constructable,/obj/structure/cable{icon_state = "4-8"},/obj/item/seeds/glowshroom,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/camera{c_tag = "Permabrig Central"; network = list("ss13","prison")},/turf/open/floor/plasteel/dark,/area/security/prison) +"aer" = (/obj/item/reagent_containers/glass/bucket,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/prison) +"aes" = (/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/prison) +"aet" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/prison) +"aeu" = (/obj/machinery/biogenerator,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) +"aev" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"aew" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aex" = (/obj/structure/lattice,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Port Aft"; dir = 1; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) +"aey" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aez" = (/obj/structure/lattice,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Starboard Aft"; dir = 1; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) +"aeA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"aeB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"aeC" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/grass,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeD" = (/obj/item/plant_analyzer,/obj/item/shovel/spade,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeE" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/sunflower,/obj/item/seeds/poppy,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeF" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeG" = (/obj/item/storage/crayons,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/prison) +"aeJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aeK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aeL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aeM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) +"aeN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) +"aeO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Hallway"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aeP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) +"aeQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"aeR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) +"aeS" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"aeT" = (/obj/structure/bookcase,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeU" = (/turf/open/floor/plasteel/dark,/area/security/prison) +"aeV" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/security/prison) +"aeW" = (/obj/structure/sink{pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"aeX" = (/obj/machinery/washing_machine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"aeY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/AIsatextAP"; dir = 8; name = "MiniSat Port Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"aeZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/camera{c_tag = "MiniSat Maintenance Port Aft"; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afc" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afe" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"aff" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afg" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera/motion{c_tag = "MiniSat Foyer"; network = list("minisat")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afh" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afi" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/camera{c_tag = "MiniSat Maintenance Starboard Aft"; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afl" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afm" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/AIsatextAS"; dir = 4; name = "MiniSat Starboard Maintenance APC"; pixel_x = 24},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afn" = (/obj/machinery/computer/libraryconsole/bookmanagement,/obj/structure/table,/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/security/prison) +"afo" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/security/prison) +"afp" = (/obj/item/storage/dice,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/prison) +"afq" = (/obj/structure/table,/obj/item/instrument/harmonica,/turf/open/floor/plasteel/dark,/area/security/prison) +"afr" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"aft" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afu" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Out"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afv" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afw" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afx" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afy" = (/obj/effect/landmark/start/cyborg,/obj/item/beacon,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afz" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afA" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afB" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high,/obj/machinery/light/small{dir = 4},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afC" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) +"afD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/prison) +"afE" = (/obj/item/toy/cards/deck,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/prison) +"afF" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/prison) +"afG" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) +"afH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) +"afI" = (/obj/machinery/computer/arcade{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) +"afJ" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space/nearstation) +"afK" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afL" = (/obj/structure/table,/obj/item/wrench,/obj/item/tank/internals/emergency_oxygen,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afM" = (/obj/structure/table,/obj/item/crowbar,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"afN" = (/obj/machinery/teleport/hub,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"afO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"afR" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"afS" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afT" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/multitool{layer = 5},/obj/item/extinguisher{layer = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) +"afU" = (/turf/closed/wall,/area/security/execution/transfer) +"afX" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"afZ" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel/dark,/area/security/prison) +"aga" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/prison) +"agb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/prison) +"agc" = (/obj/machinery/light/small{dir = 1},/obj/machinery/door/window/westleft{base_state = "right"; icon_state = "right"; name = "Unisex Showers"},/turf/open/floor/plasteel/freezer,/area/security/prison) +"agd" = (/obj/machinery/shower{dir = 8},/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/freezer,/area/security/prison) +"age" = (/obj/machinery/teleport/station,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agf" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"agg" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"agh" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agi" = (/obj/machinery/door/poddoor{id = "executionspaceblast"},/turf/open/floor/plating,/area/security/execution/transfer) +"agj" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer) +"agl" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs,/obj/item/razor,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agn" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/dark,/area/security/prison) +"ago" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/floor/plasteel/freezer,/area/security/prison) +"agp" = (/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/security/prison) +"agq" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agr" = (/obj/machinery/computer/teleporter{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"ags" = (/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"agt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access_txt = "65"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agu" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/security/execution/transfer) +"agw" = (/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Solutions Room"; req_access_txt = "2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agx" = (/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agy" = (/turf/closed/wall,/area/security/prison) +"agz" = (/obj/machinery/door/poddoor/preopen{id = "permacell2"; name = "cell blast door"},/obj/machinery/door/airlock/public/glass{id_tag = "permabolt2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) +"agA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/security/prison) +"agB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "permacell1"; name = "cell blast door"},/obj/machinery/door/airlock/public/glass{id_tag = "permabolt1"; name = "Cell 1"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) +"agC" = (/obj/machinery/door/airlock{name = "Unisex Restroom"},/turf/open/floor/plasteel/freezer,/area/security/prison) +"agD" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agE" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agF" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/security/execution/transfer) +"agH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agI" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Permabrig Cell 2"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/machinery/light/small{dir = 1},/obj/item/toy/plush/slimeplushie,/turf/open/floor/plasteel,/area/security/prison) +"agK" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/chair,/turf/open/floor/plasteel,/area/security/prison) +"agL" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Permabrig Cell 1"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/machinery/light/small{dir = 1},/obj/item/toy/plush/lizardplushie,/turf/open/floor/plasteel,/area/security/prison) +"agM" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/prison) +"agN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/chair,/turf/open/floor/plasteel,/area/security/prison) +"agO" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison) +"agP" = (/turf/closed/wall,/area/security/main) +"agQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main) +"agR" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"agS" = (/obj/structure/transit_tube,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"agT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/execution/transfer) +"agV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Solutions Room"; req_access_txt = "2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"agW" = (/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) +"agY" = (/obj/structure/table,/obj/item/paper,/obj/item/pen,/turf/open/floor/plasteel,/area/security/prison) +"agZ" = (/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) +"aha" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) +"ahb" = (/obj/structure/toilet/secret/prison{dir = 8},/turf/open/floor/plasteel/freezer,/area/security/prison) +"ahd" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access_txt = "65"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"ahi" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"ahj" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/clothing/suit/straight_jacket,/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahk" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 6; pixel_y = 27},/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = -6; pixel_y = 32; req_access_txt = "7"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/button/ignition{id = "secigniter"; pixel_x = 6; pixel_y = 36},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahl" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahm" = (/obj/machinery/door/airlock/security/glass{name = "Long-Term Cell 2"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/prison) +"ahn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/closed/wall,/area/security/prison) +"aho" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/prison) +"ahp" = (/obj/machinery/door/airlock/security/glass{name = "Long-Term Cell 1"; req_access_txt = "2"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/prison) +"ahq" = (/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahr" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/turf/open/floor/plating,/area/maintenance/fore) +"ahs" = (/obj/structure/lattice/catwalk,/obj/structure/transit_tube,/turf/open/space/basic,/area/space/nearstation) +"aht" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"ahu" = (/obj/structure/table/glass,/obj/item/flashlight/lamp,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"ahv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"ahw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/execution/transfer) +"ahx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahz" = (/obj/machinery/button/door{id = "executionfireblast"; name = "Transfer Area Lockdown"; pixel_x = 25; pixel_y = -5; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{dir = 9; pixel_x = 24; pixel_y = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/execution/transfer) +"ahB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"ahC" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 2"; pixel_x = 5; pixel_y = 24},/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = 4; pixel_y = 34; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/prison) +"ahD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) +"ahF" = (/obj/machinery/camera{c_tag = "Brig Prison Hallway"; network = list("ss13","prison")},/obj/machinery/computer/security/telescreen/prison{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"ahG" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 1"; pixel_x = 5; pixel_y = 24},/obj/machinery/button/door{id = "permacell1"; name = "Cell 1 Lockdown"; pixel_x = 4; pixel_y = 34; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/prison) +"ahH" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"ahI" = (/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) +"ahJ" = (/obj/machinery/power/apc/highcap/five_k{dir = 1; name = "Prison Wing APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/security/prison) +"ahK" = (/obj/structure/table,/obj/item/melee/chainofcommand,/obj/item/melee/baton,/turf/open/floor/plasteel,/area/security/prison) +"ahL" = (/turf/closed/wall/r_wall,/area/security/armory) +"ahM" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = -27},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahQ" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ahR" = (/obj/structure/lattice/catwalk,/obj/structure/transit_tube/crossing,/turf/open/space/basic,/area/space/nearstation) +"ahS" = (/obj/structure/table/optable,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"ahT" = (/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"ahU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/execution/transfer) +"ahV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Prisoner Transfer Centre"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ahZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"aia" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"aib" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) +"aic" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) +"aid" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aie" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aif" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aig" = (/turf/open/floor/plasteel,/area/security/prison) +"aih" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/item/restraints/handcuffs,/obj/item/razor,/turf/open/floor/plasteel,/area/security/prison) +"aii" = (/obj/structure/table,/obj/item/storage/box/chemimp{pixel_x = 6},/obj/item/storage/box/trackimp{pixel_x = -3},/turf/open/floor/plasteel/dark,/area/security/armory) +"aij" = (/obj/structure/closet/secure_closet/contraband/armory,/obj/item/poster/random_contraband,/obj/item/clothing/suit/armor/navyblue/russian,/obj/item/grenade/plastic/c4,/turf/open/floor/plasteel/dark,/area/security/armory) +"aik" = (/obj/structure/closet/secure_closet/lethalshots,/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"},/turf/open/floor/plasteel/dark,/area/security/armory) +"ail" = (/obj/vehicle/ridden/secway,/turf/open/floor/plasteel/dark,/area/security/armory) +"aim" = (/obj/item/grenade/barrier{pixel_x = 4},/obj/item/grenade/barrier,/obj/item/grenade/barrier{pixel_x = -4},/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/armory) +"ain" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"aio" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"aip" = (/obj/structure/closet/bombcloset/security,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"aiq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"air" = (/obj/vehicle/ridden/secway,/obj/item/key/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ais" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"ait" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiu" = (/turf/closed/wall,/area/maintenance/department/security/brig) +"aiv" = (/obj/structure/table/glass,/obj/item/storage/backpack/duffelbag/sec/surgery{pixel_y = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"aiw" = (/obj/machinery/power/emitter/anchored{dir = 1; state = 2},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/security/execution/transfer) +"aix" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"aiy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"aiz" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"aiA" = (/turf/closed/wall/r_wall,/area/security/execution/transfer) +"aiB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiD" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/prison) +"aiG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/prison) +"aiH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aiJ" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiK" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/electropack,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aiL" = (/obj/structure/table,/obj/item/storage/box/flashbangs{pixel_x = 6; pixel_y = 3},/obj/item/storage/box/flashbangs{pixel_x = -3; pixel_y = 3},/obj/item/storage/lockbox/loyalty{layer = 4},/turf/open/floor/plasteel/dark,/area/security/armory) +"aiM" = (/turf/open/floor/plasteel/dark,/area/security/armory) +"aiN" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/armory) +"aiO" = (/obj/structure/table,/obj/item/storage/box/firingpins,/obj/item/storage/box/firingpins,/obj/machinery/power/apc/highcap/five_k{dir = 4; name = "Armory APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/security/armory) +"aiP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main) +"aiQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main) +"aiR" = (/turf/closed/wall,/area/crew_quarters/heads/hos) +"aiS" = (/turf/closed/wall,/area/maintenance/department/crew_quarters/dorms) +"aiT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aiU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/barsign,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aiV" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiW" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiX" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/item/reagent_containers/glass/beaker,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiY" = (/obj/structure/table,/obj/item/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aiZ" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"aja" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ajb" = (/obj/structure/closet/secure_closet/injection,/obj/machinery/power/apc{dir = 4; name = "Prisoner Transfer Centre"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) +"ajc" = (/obj/structure/closet/secure_closet/brig,/turf/open/floor/plasteel/dark,/area/security/prison) +"ajd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aje" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison) +"ajf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"ajg" = (/obj/structure/rack,/obj/item/gun/energy/ionrifle,/obj/item/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajh" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/riot{pixel_x = 3; pixel_y = -3},/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot{pixel_x = 3; pixel_y = -3},/obj/item/shield/riot,/obj/item/shield/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) +"aji" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajj" = (/obj/structure/rack,/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajk" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"ajl" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajm" = (/obj/structure/table,/obj/item/storage/fancy/donut_box{pixel_y = 2},/obj/structure/noticeboard{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajn" = (/obj/structure/table,/obj/structure/sign/plaques/golden{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/item/storage/box/handcuffs{pixel_x = 1; pixel_y = 3},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajo" = (/obj/machinery/vending/coffee,/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajp" = (/obj/machinery/photocopier,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajq" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"ajr" = (/obj/item/reagent_containers/food/snacks/donut/chaos,/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"ajs" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) +"ajt" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 4; pixel_y = 7},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aju" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"ajv" = (/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ajx" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ajy" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ajz" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ajA" = (/obj/docking_port/stationary{dheight = 1; dir = 8; dwidth = 12; height = 17; id = "syndicate_ne"; name = "northeast of station"; width = 23},/turf/open/space,/area/space/nearstation) +"ajB" = (/obj/item/storage/box/mousetraps,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajD" = (/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajE" = (/obj/structure/bed,/obj/item/bedsheet,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajF" = (/obj/machinery/atmospherics/components/unary/tank/oxygen,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajG" = (/obj/machinery/atmospherics/components/unary/tank/nitrogen,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ajH" = (/turf/closed/wall,/area/security/processing/cremation) +"ajI" = (/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Crematorium"; req_access_txt = "2;27"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"ajJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) +"ajK" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) +"ajL" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) +"ajM" = (/turf/closed/wall,/area/security/brig) +"ajN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"ajO" = (/obj/structure/closet{name = "Evidence Closet"},/obj/structure/sign/poster/official/safety_report{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"ajP" = (/obj/structure/rack,/obj/item/gun/energy/e_gun{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/firealarm{dir = 4; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/armory) +"ajR" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt{layer = 3.00001},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/armory) +"ajT" = (/obj/structure/rack,/obj/item/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) +"ajU" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "Security Office APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"ajV" = (/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) +"ajW" = (/obj/structure/chair/stool,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) +"ajX" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajY" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ajZ" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aka" = (/obj/machinery/suit_storage_unit/hos,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akb" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/sign/plaques/kiddie{desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint."; name = "\improper 'Diploma' frame"; pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akc" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/light{dir = 1; light_color = "#706891"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akd" = (/obj/structure/table/wood,/obj/item/storage/box/seccarts{pixel_x = 3; pixel_y = 2},/obj/item/storage/box/deputy,/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"ake" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/machinery/button/door{id = "hos_spess_shutters"; name = "Space shutters"; pixel_x = 24; req_access_txt = "1"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akf" = (/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"akg" = (/obj/structure/mineral_door/wood,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akh" = (/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akj" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/item/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{name = "space-bridge access"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ako" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akp" = (/obj/machinery/door/airlock/public/glass{name = "space-bridge access"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"akr" = (/obj/machinery/washing_machine,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aks" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"akt" = (/obj/structure/bed,/obj/item/bedsheet,/obj/machinery/button/door{id = "mainthideout"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aku" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1; node1_concentration = 0.2; node2_concentration = 0.8; on = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"akv" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"akw" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/obj/machinery/meter,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"akx" = (/obj/structure/bodycontainer/crematorium,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"aky" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"akz" = (/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/power/apc{dir = 1; name = "Crematorium APC"; pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"akA" = (/turf/closed/wall/r_wall,/area/security/brig) +"akB" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/reagent_containers/spray/cleaner,/obj/structure/table/glass,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"akC" = (/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/regular,/obj/structure/table/glass,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) +"akD" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 24},/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) +"akE" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) +"akF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"akG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"akH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) +"akI" = (/obj/machinery/door/airlock/security{name = "Evidence Room"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"akJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) +"akK" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/camera{c_tag = "Brig Evidence Room"; dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"akL" = (/obj/structure/rack,/obj/item/gun/energy/e_gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/item/gun/energy/e_gun/advtaser,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) +"akM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) +"akN" = (/obj/effect/landmark/event_spawn,/obj/structure/rack,/obj/item/key/security,/turf/open/floor/plasteel/dark,/area/security/armory) +"akO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) +"akP" = (/obj/structure/rack,/obj/item/gun/ballistic/shotgun/riot,/obj/item/gun/ballistic/shotgun/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) +"akQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"akR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"akT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"akU" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akV" = (/obj/item/storage/secure/safe{pixel_x = -22; pixel_y = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akW" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"akZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"ala" = (/obj/structure/transit_tube/curved{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"alb" = (/obj/structure/lattice/catwalk,/obj/structure/showcase/cyborg/old{pixel_y = 20},/turf/open/space,/area/space/nearstation) +"alc" = (/obj/structure/table,/obj/item/storage/fancy/cigarettes/cigars,/obj/item/stack/spacecash/c20,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ale" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"alf" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"alg" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"alh" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ali" = (/obj/machinery/door/airlock/abandoned{id_tag = "mainthideout"; name = "Hideout"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alj" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"all" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"aln" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alo" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Brig Crematorium"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig) +"alq" = (/obj/item/storage/box/bodybags,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/reagent_containers/syringe{name = "steel point"},/obj/item/reagent_containers/glass/bottle/charcoal,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"alr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"als" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/security/brig) +"alt" = (/obj/machinery/door/window/westleft{dir = 4; name = "Brig Infirmary"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) +"alu" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"alv" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"alw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"alx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/brig) +"aly" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/light/small,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"alz" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"alA" = (/obj/machinery/flasher/portable,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/armory) +"alB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"alC" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = -4; pixel_y = 12},/obj/item/pen,/obj/item/folder/red{layer = 2.9; pixel_x = 8},/turf/open/floor/plasteel,/area/security/main) +"alD" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel,/area/security/main) +"alE" = (/turf/open/floor/plasteel,/area/security/main) +"alF" = (/obj/machinery/computer/security,/turf/open/floor/plasteel,/area/security/main) +"alG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"alH" = (/turf/open/floor/plasteel/dark,/area/security/main) +"alI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"alJ" = (/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"alK" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"alL" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"alM" = (/obj/machinery/computer/secure_data{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"alN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"alO" = (/obj/structure/transit_tube/diagonal,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"alP" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"alQ" = (/obj/structure/chair/stool/bar,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) +"alR" = (/obj/effect/landmark/blobstart,/obj/structure/chair/stool/bar,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"alS" = (/obj/structure/chair/stool/bar,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"alT" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alU" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Supply to Security"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"alW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alX" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"alZ" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Brig Infirmary"; dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark,/area/security/brig) +"ama" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"amb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/security/brig) +"amc" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Brig Infirmary"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) +"amd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"ame" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"amf" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{dir = 4; name = "Brig APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"amg" = (/turf/closed/wall/r_wall,/area/security/warden) +"amh" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/warden) +"ami" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/warden) +"amj" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/warden) +"amk" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/warden) +"aml" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) +"amm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Security Office"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"amn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"amo" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"amp" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"amq" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"amr" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ams" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/main) +"amt" = (/obj/machinery/door/airlock/command/glass{name = "Head of Security"; req_access_txt = "58"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"amu" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"amv" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/head_of_security,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amx" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amy" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amz" = (/obj/machinery/computer/security/hos{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"amA" = (/obj/structure/transit_tube/curved/flipped{dir = 4},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"amB" = (/obj/structure/transit_tube/crossing/horizontal,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"amC" = (/obj/structure/transit_tube/horizontal,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"amD" = (/obj/structure/transit_tube/curved/flipped{dir = 8},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"amF" = (/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/department/crew_quarters/dorms) +"amG" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/crew_quarters/dorms) +"amH" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"amI" = (/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance"; req_one_access_txt = "2;27"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"amJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/closed/wall,/area/security/processing/cremation) +"amK" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 1; icon_state = "left"; name = "Security Delivery"; req_access_txt = "1"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 1; freq = 1400; location = "Security"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"amL" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/brig) +"amM" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"amN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"amO" = (/obj/structure/closet/crate/freezer,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/item/reagent_containers/blood/OMinus,/obj/item/reagent_containers/blood/OMinus,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) +"amP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"amQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"amR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"amS" = (/obj/structure/closet/secure_closet/warden,/obj/item/clothing/mask/gas/sechailer,/obj/machinery/power/apc{dir = 8; name = "Brig Control APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amT" = (/obj/machinery/computer/prisoner/management,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amU" = (/obj/machinery/computer/security,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Brig Control Room"},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_y = 24},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amV" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amX" = (/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"amZ" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"ana" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"anb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"anc" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/security/main) +"and" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main) +"ane" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) +"anf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ang" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anh" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"ani" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"anj" = (/obj/structure/table/wood,/obj/item/phone,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"ank" = (/obj/machinery/computer/card/minor/hos{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) +"anl" = (/obj/structure/transit_tube/diagonal,/turf/open/space/basic,/area/space/nearstation) +"anm" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Pete's Speakeasy"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"anq" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"anr" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ans" = (/obj/item/wirecutters,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ant" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"anu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"anv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall,/area/security/processing/cremation) +"anw" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) +"anx" = (/obj/machinery/door/airlock/maintenance{name = "Brig Infirmary Maintenance"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"any" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/sign/map{icon_state = "map-pubby"; pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"anz" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"anA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"anB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden) +"anC" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anJ" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"anK" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) +"anL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"anM" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) +"anN" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) +"anO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"anP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/security/main) +"anQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"anR" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anS" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/keycard_auth{pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anT" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anU" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Head of Security's Office"; dir = 1},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_y = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anV" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{name = "Head of Security's Office APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"anW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"anX" = (/turf/closed/wall/r_wall,/area/teleporter) +"anY" = (/obj/structure/closet/firecloset,/obj/effect/decal/cleanable/cobweb,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"aob" = (/obj/structure/closet/emcloset,/obj/item/camera,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"aod" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoe" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aof" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aog" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aok" = (/obj/machinery/computer/security/labor,/turf/open/floor/plasteel/dark,/area/security/brig) +"aol" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel/dark,/area/security/brig) +"aom" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aon" = (/turf/open/floor/plasteel,/area/security/brig) +"aoo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"aop" = (/obj/structure/bed/dogbed,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/mob/living/simple_animal/pet/dog/pug{name = "McGriff"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoq" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aor" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aos" = (/obj/machinery/door/airlock/security{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aot" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"aou" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) +"aov" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"aow" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aox" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 8},/turf/open/floor/plasteel,/area/security/main) +"aoy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aoz" = (/turf/closed/wall,/area/maintenance/fore) +"aoB" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/bot_white,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) +"aoH" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/solar/port) +"aoI" = (/obj/structure/lattice,/turf/open/space,/area/solar/port) +"aoJ" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/solar/port) +"aoK" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"aoL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aoO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/camera{c_tag = "Brig Gulag Teleporter"; dir = 4},/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/storage/box/prisoner,/obj/item/razor{pixel_x = -6},/obj/item/paper/guides/jobs/security/labor_camp,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/security/brig) +"aoP" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"aoQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) +"aoR" = (/obj/item/book/manual/wiki/security_space_law,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/sunglasses,/obj/structure/table/reinforced,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoS" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "Secure Gate"; name = "Entrance Lockdown"; pixel_x = 5; pixel_y = -2},/obj/machinery/button/door{id = "Prison Gate"; name = "Permabrig Lockdown"; pixel_x = 5; pixel_y = 8; req_access_txt = "2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoT" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/warden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/computer/crew{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoV" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoX" = (/obj/structure/rack,/obj/item/crowbar,/obj/item/wrench,/obj/item/laser_pointer/red,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoY" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light_switch{pixel_y = -22},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"aoZ" = (/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) +"apa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"apb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"apc" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 7},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/main) +"apd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"ape" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"apf" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/sign/warning/vacuum/external{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"apg" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/security{name = "Security Access"; req_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/fore) +"aph" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"api" = (/obj/machinery/power/apc{dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"apj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) +"apk" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/fore) +"apl" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"apm" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) +"apn" = (/turf/open/floor/plating,/area/maintenance/fore) +"apo" = (/obj/structure/transit_tube/diagonal/crossing,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"app" = (/obj/machinery/camera{c_tag = "Bridge Starboard Exterior"; dir = 1},/turf/open/space,/area/space/nearstation) +"apr" = (/obj/machinery/gateway/centerstation,/turf/open/floor/plasteel/dark,/area/gateway) +"apt" = (/obj/structure/chair{dir = 4},/obj/item/clothing/mask/cigarette,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"apu" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"apv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"apw" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/camera_film,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) +"apz" = (/obj/item/target/clown,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"apB" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"apE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) +"apF" = (/obj/machinery/computer/prisoner/gulag_teleporter_computer{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) +"apG" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel/dark,/area/security/brig) +"apH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) +"apI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/security/warden) +"apJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) +"apK" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{dir = 1; name = "Armory Desk"; req_access_txt = "3"},/obj/machinery/door/window/southleft{name = "Reception Desk"; req_access_txt = "63"},/obj/item/paper_bin{layer = 2.9},/obj/item/pen{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"apL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) +"apM" = (/obj/machinery/door/airlock/security/glass{name = "Brig Control"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) +"apN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"apO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"apP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office"; req_access_txt = "1"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) +"apQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/fore) +"apR" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/fore) +"apS" = (/obj/structure/transit_tube/curved,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"apT" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"apU" = (/obj/effect/turf_decal/bot_white/left,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) +"apV" = (/obj/effect/turf_decal/bot_white,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) +"apW" = (/obj/effect/turf_decal/bot_white/right,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) +"apX" = (/turf/closed/wall,/area/crew_quarters/dorms) +"aqa" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"aqb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space,/area/solar/port) +"aqc" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"aqd" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"aqe" = (/obj/item/target/alien,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aqg" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aqh" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aqi" = (/obj/structure/closet,/obj/item/clothing/under/color/black,/obj/item/clothing/under/color/red,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aqm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"aqn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"aqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqq" = (/obj/machinery/camera{c_tag = "Brig Cells"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqs" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"aqv" = (/obj/machinery/camera{c_tag = "Brig Entrance"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqz" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqA" = (/obj/machinery/computer/security/telescreen/interrogation{dir = 8; pixel_x = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/brig) +"aqC" = (/turf/open/floor/plasteel/dark,/area/security/brig) +"aqD" = (/obj/machinery/status_display/ai{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/brig) +"aqE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore) +"aqF" = (/turf/closed/wall/r_wall,/area/maintenance/fore) +"aqG" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"aqH" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/bridge) +"aqI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/turf/open/floor/plating,/area/bridge) +"aqJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/bridge) +"aqK" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/bridge) +"aqL" = (/obj/machinery/computer/bank_machine,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aqM" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"aqN" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"aqO" = (/obj/machinery/power/apc{dir = 1; name = "Vault APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"aqP" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aqQ" = (/obj/structure/window/reinforced,/obj/machinery/power/apc{dir = 8; name = "Gateway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/gateway) +"aqR" = (/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) +"aqS" = (/obj/machinery/door/window{name = "Gateway Chamber"; req_access_txt = "62"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/gateway) +"aqT" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"aqU" = (/obj/machinery/washing_machine,/obj/machinery/requests_console{department = "Crew Quarters"; pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"aqV" = (/obj/machinery/washing_machine,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"aqY" = (/obj/docking_port/stationary{dwidth = 2; height = 6; id = "monastery_shuttle_station"; name = "Station"; roundstart_template = /datum/map_template/shuttle/escape_pod/large; width = 5},/turf/open/space/basic,/area/space) +"ara" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/port) +"arc" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ard" = (/obj/item/clothing/head/cone,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ari" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"arj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/obj/machinery/button/door{id = "prison release"; name = "Labor Camp Shuttle Lockdown"; pixel_y = -25; req_access_txt = "2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"ark" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"arl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) +"arm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"arn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/security/brig) +"aro" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"arp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"arq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"arr" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) +"ars" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"art" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aru" = (/obj/machinery/door/airlock/security{name = "Interrogation"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"arv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"arw" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"arx" = (/obj/item/flashlight/lamp,/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/security/brig) +"ary" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"arz" = (/obj/machinery/camera{c_tag = "Brig Interrogation"; dir = 8; network = list("interrogation")},/turf/open/floor/plasteel/dark,/area/security/brig) +"arA" = (/turf/closed/wall/r_wall,/area/bridge) +"arB" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Bridge MiniSat Access"; dir = 4},/turf/open/floor/plating,/area/bridge) +"arC" = (/obj/structure/transit_tube_pod{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/turf/open/floor/plating,/area/bridge) +"arD" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/bridge) +"arE" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/curved/flipped{dir = 8},/turf/open/floor/plating,/area/bridge) +"arF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"arG" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/bridge) +"arH" = (/obj/machinery/modular_computer/console/preset/command,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"arI" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arJ" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arK" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/item/folder/yellow{pixel_y = 4},/obj/structure/table/glass,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/pen,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arL" = (/obj/machinery/computer/card,/obj/machinery/camera{c_tag = "Bridge - Central"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arM" = (/obj/machinery/computer/communications,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arN" = (/obj/machinery/computer/station_alert,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arO" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/structure/table/glass,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/recharger,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arP" = (/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arQ" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arR" = (/obj/machinery/computer/prisoner/management,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"arS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"arT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"arU" = (/obj/machinery/nuclearbomb/selfdestruct,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"arV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"arW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/ore_silo,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"arX" = (/obj/machinery/camera{c_tag = "Gateway"; dir = 4},/obj/structure/table,/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/paper/pamphlet,/turf/open/floor/plasteel,/area/gateway) +"arY" = (/obj/machinery/computer/gateway_control,/turf/open/floor/plasteel,/area/gateway) +"arZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) +"asa" = (/obj/structure/table,/obj/item/radio/off{pixel_y = 6},/obj/item/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/radio/off,/obj/structure/sign/warning/biohazard{pixel_x = 32},/obj/item/radio/off,/turf/open/floor/plasteel,/area/gateway) +"asb" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"asc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"asd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"ase" = (/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"asf" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"asg" = (/obj/machinery/newscaster{pixel_x = 32},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/bedsheetbin/color,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"ash" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/dorms) +"asi" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/crew_quarters/dorms) +"asj" = (/obj/effect/spawner/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/crew_quarters/dorms) +"aso" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"asr" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"asu" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"asw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig) +"asx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 1"; name = "Cell 1"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"asy" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 2"; name = "Cell 2"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"asA" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"asB" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 3"; name = "Cell 3"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"asC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asE" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"asG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/brig) +"asH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"asI" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"asJ" = (/obj/item/folder/red,/obj/item/taperecorder,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/security/brig) +"asK" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"asL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig) +"asM" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/bridge) +"asN" = (/turf/open/floor/plasteel,/area/bridge) +"asO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/bridge) +"asP" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/bridge) +"asQ" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = 10},/obj/machinery/button/door{id = "bridgespace"; name = "Bridge Space Lockdown"; pixel_x = -24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"asR" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"asS" = (/turf/open/floor/plasteel/dark,/area/bridge) +"asT" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/button/door{id = "bridgespace"; name = "Bridge Space Lockdown"; pixel_x = 24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"asU" = (/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/bridge) +"asV" = (/obj/structure/closet/crate/goldcrate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"asW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"asX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"asY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) +"asZ" = (/obj/structure/closet/crate/silvercrate,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"ata" = (/obj/machinery/light_switch{pixel_x = -20},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway) +"atb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/gateway) +"atc" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) +"atd" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/gateway) +"atf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/dorms) +"atg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"ath" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Laundry Room"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"ati" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"atj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"atk" = (/turf/open/floor/plating,/area/crew_quarters/dorms) +"atl" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/crew_quarters/dorms) +"atn" = (/turf/closed/wall,/area/crew_quarters/fitness/recreation) +"atp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green,/area/maintenance/department/security/brig) +"atq" = (/turf/open/floor/circuit/green,/area/maintenance/department/security/brig) +"atv" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/brig) +"atw" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 1"; name = "Cell 1"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"atx" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) +"aty" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"atz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) +"atA" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 2"; name = "Cell 2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"atB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"atC" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 3"; name = "Cell 3"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"atD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) +"atE" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/security/glass{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"atF" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) +"atG" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/security/glass{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"atH" = (/obj/machinery/door/airlock/security/glass{name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) +"atI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) +"atJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) +"atK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Emergency Escape"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/fore) +"atL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sign/warning/securearea,/turf/closed/wall,/area/bridge) +"atM" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"atN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/sign/warning/securearea,/turf/closed/wall,/area/bridge) +"atO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/bridge) +"atP" = (/obj/machinery/computer/monitor{name = "Bridge Power Monitoring Console"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"atQ" = (/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"atR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"atS" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"atT" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"atU" = (/obj/item/beacon,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"atV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"atW" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"atX" = (/obj/machinery/computer/shuttle/labor{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"atY" = (/turf/closed/wall,/area/bridge) +"atZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"aua" = (/obj/structure/closet/secure_closet/freezer/money,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/clothing/head/bearpelt,/obj/item/skub,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aub" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"auc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aud" = (/obj/machinery/camera/motion{c_tag = "Vault"; dir = 1; network = list("vault")},/obj/machinery/light,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aue" = (/obj/structure/safe,/obj/item/bikehorn/golden,/obj/item/ammo_box/a357,/obj/item/tank/internals/plasma/full,/obj/item/disk/nuclear/fake,/obj/item/stack/ore/diamond,/obj/item/gun/energy/disabler,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"auf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/turf/open/floor/plasteel,/area/gateway) +"aug" = (/obj/machinery/button/door{id = "stationawaygate"; name = "Gateway Access Shutter Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/crate/internals,/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/turf/open/floor/plasteel,/area/gateway) +"auh" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/gateway) +"aui" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/gateway) +"auj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/dorms) +"auk" = (/obj/machinery/door/airlock{name = "Laundry Room"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"aul" = (/obj/machinery/computer/shuttle/monastery_shuttle,/obj/structure/sign/warning/pods{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"aum" = (/obj/effect/spawner/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/crew_quarters/dorms) +"aur" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) +"aus" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aut" = (/obj/item/clothing/head/collectable/police,/turf/open/floor/mech_bay_recharge_floor,/area/maintenance/department/security/brig) +"auu" = (/obj/machinery/computer/mech_bay_power_console{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel,/area/maintenance/department/security/brig) +"aux" = (/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"auz" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"auA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) +"auB" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"auC" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"auD" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 8; name = "Brig Desk"; req_access_txt = "1"},/obj/item/paper_bin,/obj/item/pen{layer = 3.1},/turf/open/floor/plasteel/dark,/area/security/brig) +"auE" = (/obj/machinery/computer/secure_data,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "innerbrig"; name = "Brig Interior Doors Control"; normaldoorcontrol = 1; pixel_x = -6; pixel_y = 36; req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "outerbrig"; name = "Brig Exterior Doors Control"; normaldoorcontrol = 1; pixel_x = -6; pixel_y = 24; req_access_txt = "63"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = 6; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/brig) +"auF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) +"auG" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/dark,/area/security/brig) +"auH" = (/turf/closed/wall,/area/crew_quarters/heads/captain) +"auI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/heads/captain) +"auJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"auK" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/bridge) +"auL" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/bridge) +"auM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/bridge) +"auN" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"auO" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"auP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"auQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"auR" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/bridge) +"auS" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"auT" = (/obj/machinery/computer/cargo/request{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"auU" = (/obj/structure/closet/emcloset/anchored,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/bridge) +"auV" = (/turf/open/floor/plating,/area/bridge) +"auW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"auX" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"auY" = (/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/vault{req_access_txt = "53"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"auZ" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"ava" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Access"; req_access_txt = "62"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) +"avb" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) +"avc" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/gateway) +"avd" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm3Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) +"ave" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm3Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/wood,/area/crew_quarters/dorms) +"avf" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) +"avg" = (/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/dorms) +"avh" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avi" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/camera{c_tag = "Dormitories Fore"},/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; name = "Monastery Monitor"; network = list("monastery"); pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avk" = (/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avl" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/computer/cryopod{pixel_y = 30},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"avm" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) +"avn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"avp" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/box; width = 9},/turf/open/space/basic,/area/space) +"avq" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/security/brig) +"avr" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Labor Shuttle Dock"; dir = 8},/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/brig) +"avs" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/obj/item/bedsheet/blue,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avu" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"avv" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28},/obj/item/bedsheet/green,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avw" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avx" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"avy" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 3"; pixel_x = -28},/obj/item/bedsheet/orange,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avA" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"avB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"avC" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 8; name = "Brig Desk"; req_access_txt = "1"},/obj/item/folder/red,/obj/item/restraints/handcuffs,/turf/open/floor/plasteel/dark,/area/security/brig) +"avD" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"avE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/security/brig) +"avF" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"avG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/heads/captain) +"avH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/curtain,/obj/item/soap/deluxe,/obj/item/bikehorn/rubberducky,/obj/machinery/shower{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"avI" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"avJ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"avK" = (/obj/structure/toilet/secret/low_loot{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"avL" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/fore) +"avM" = (/obj/machinery/door/airlock/command{name = "Balcony"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"avN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"avO" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Bridge MiniSat Access Foyer"; dir = 1},/obj/machinery/light/small,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"avP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"avQ" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"avR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"avS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"avT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/bridge) +"avU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"avV" = (/obj/structure/table/glass,/obj/item/storage/box/ids{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/PDAs,/turf/open/floor/plasteel/dark,/area/bridge) +"avW" = (/obj/structure/table/glass,/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel/dark,/area/bridge) +"avX" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/turf/open/floor/plasteel/dark,/area/bridge) +"avY" = (/obj/structure/table/glass,/obj/item/aicard,/turf/open/floor/plasteel/dark,/area/bridge) +"avZ" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs,/obj/item/assembly/flash/handheld,/obj/item/laser_pointer/blue,/turf/open/floor/plasteel/dark,/area/bridge) +"awa" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"awb" = (/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"awc" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Bridge External Access"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"awd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central) +"awe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) +"awf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awg" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awh" = (/obj/machinery/camera{c_tag = "Vault Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awk" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awm" = (/obj/machinery/light{dir = 1},/obj/item/kirbyplants/random,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awn" = (/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/dorms) +"awo" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/dorms) +"awp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/dorms) +"awq" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"awr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aws" = (/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"awt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"awu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"awv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aww" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) +"awB" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) +"awC" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/recreation"; dir = 1; name = "Fitness Room APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"awD" = (/obj/machinery/light{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"awE" = (/obj/item/storage/briefcase,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"awH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/security/brig) +"awI" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) +"awJ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) +"awK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"awL" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/security/glass{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"awM" = (/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) +"awN" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/security/glass{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"awO" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/item/radio,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) +"awP" = (/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/item/reagent_containers/food/snacks/donut,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/table/reinforced,/obj/item/folder/red{layer = 2.9},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) +"awQ" = (/obj/structure/table/reinforced,/obj/item/pen,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) +"awR" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awS" = (/obj/machinery/door/airlock{name = "Private Restroom"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) +"awT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Captain's Office Access"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/heads/captain) +"awU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"awY" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"awZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/bridge) +"axa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"axb" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"axc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"axd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) +"axe" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/computer/rdconsole{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"axg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/bridge) +"axh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/bridge) +"axi" = (/turf/closed/wall/r_wall,/area/hallway/primary/central) +"axj" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/central) +"axk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/central) +"axl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/hallway/primary/central) +"axm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/stairs,/area/hallway/primary/central) +"axn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/primary/central) +"axo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"axp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"axq" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"axr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy,/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"axt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"axu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"axv" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) +"axw" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"axy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"axz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"axA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"axB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port) +"axC" = (/turf/closed/wall,/area/maintenance/solars/port) +"axE" = (/obj/machinery/door/poddoor/preopen{id = "prison release"; name = "prisoner processing blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axF" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axG" = (/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axH" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axI" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axJ" = (/obj/structure/sign/departments/security{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axL" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"axN" = (/obj/structure/dresser,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"axO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"axP" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Captain's Quarters"},/obj/item/clothing/suit/armor/riot/knight/blue,/obj/item/clothing/head/helmet/knight/blue,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"axQ" = (/obj/machinery/suit_storage_unit/captain,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"axR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"axS" = (/obj/machinery/power/apc{dir = 1; name = "Captain's Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/obj/item/kirbyplants/random,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axT" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_y = 30},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axU" = (/obj/machinery/computer/card,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axV" = (/obj/machinery/computer/communications,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axW" = (/obj/structure/filingcabinet/employment,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"axX" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"axY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"axZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) +"aya" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"ayb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"ayc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"ayd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aye" = (/obj/machinery/door/airlock/command{name = "External Access"; req_one_access_txt = "19; 65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"ayf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"ayg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/bridge) +"ayh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/stairs,/area/hallway/primary/central) +"ayi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm2Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) +"ayj" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm2Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayk" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayl" = (/obj/machinery/button/door{id = "Dorm2"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"aym" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"ayn" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayo" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayq" = (/obj/structure/table/wood,/obj/item/storage/backpack,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ayr" = (/turf/open/floor/carpet,/area/crew_quarters/dorms) +"ays" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"ayt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Recreation Room"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"ayu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"ayw" = (/obj/machinery/computer/holodeck{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"ayx" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"ayy" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/port) +"ayz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/solars/port) +"ayA" = (/obj/machinery/power/solar_control{dir = 4; id = "portsolar"; name = "Port Solar Control"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port) +"ayB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port) +"ayC" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Port Solar APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/solars/port) +"ayD" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ayE" = (/obj/machinery/button/door{id = "prison release"; name = "Labor Camp Shuttle Lockdown"; pixel_x = -25; req_access_txt = "2"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayF" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayI" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigS2"; location = "BrigP"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayN" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigP"; location = "BrigS1"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayO" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayQ" = (/obj/item/beacon,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayR" = (/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"ayS" = (/obj/structure/bed,/obj/item/bedsheet/captain,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"ayT" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"ayU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"ayV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"ayW" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"ayX" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"ayY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"ayZ" = (/obj/machinery/door/window{dir = 8; name = "Captain's Desk"; req_access_txt = "20"},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aza" = (/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"azb" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start/captain,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"azc" = (/obj/item/storage/secure/safe{pixel_x = 35; pixel_y = 5},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"azd" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aze" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/bridge) +"azf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) +"azg" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azh" = (/obj/machinery/light{light_color = "#e8eaff"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"azk" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai_upload"; name = "AI Upload turret control"; pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Central"; dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) +"azm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) +"azn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/bridge) +"azo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; dir = 4; name = "Bridge APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"azp" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Bridge External Access"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/bridge) +"azq" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"azr" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azs" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azu" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"azv" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azx" = (/obj/structure/table/wood,/obj/item/paicard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azy" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"azA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"azB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Recreation Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azE" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azF" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Holodeck"; dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"azG" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"azH" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/solar/port) +"azI" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space,/area/solar/port) +"azJ" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/port) +"azK" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"azL" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) +"azN" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azP" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azQ" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azS" = (/obj/machinery/door/airlock/engineering{name = "Port Solar Access"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"azY" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"azZ" = (/mob/living/simple_animal/bot/secbot/beepsky{name = "Officer Beepsky"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aAa" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/potato{name = "\improper Beepsky's emergency battery"},/obj/item/paper/fluff/jobs/security/beepsky_mom,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aAb" = (/obj/machinery/power/apc{dir = 8; name = "Fore Primary Hallway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAd" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAe" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAf" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Port"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAk" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Tool"; location = "BrigS2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAn" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Fore Primary Hallway Starboard"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAo" = (/obj/item/kirbyplants{icon_state = "plant-14"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aAp" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"aAq" = (/obj/structure/table/wood,/obj/item/storage/box/matches,/obj/item/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/obj/item/reagent_containers/food/drinks/flask/gold,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"aAr" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"aAs" = (/obj/structure/table/wood,/obj/item/kitchen/fork,/obj/item/card/id/captains_spare,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) +"aAt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aAu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAv" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAw" = (/obj/structure/table/wood,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAx" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAy" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/stamp/captain,/obj/machinery/light{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aAz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Entrance Lockdown"; pixel_x = -24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aAA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"aAB" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) +"aAC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access_txt = "16"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aAD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/bridge) +"aAE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Entrance Lockdown"; pixel_x = 24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aAF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) +"aAG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) +"aAH" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) +"aAI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAM" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aAN" = (/turf/closed/wall,/area/hallway/primary/central) +"aAO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aAP" = (/obj/effect/landmark/start/assistant,/obj/structure/chair/comfy{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms) +"aAQ" = (/obj/structure/chair/comfy{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"aAS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aAT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aAU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aAV" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/port) +"aAW" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/multitool,/turf/open/floor/plating,/area/maintenance/solars/port) +"aAX" = (/obj/structure/chair/stool,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) +"aAY" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) +"aBa" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"aBc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aBd" = (/turf/closed/wall,/area/security/detectives_office) +"aBe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "datboidetective"; name = "privacy shutters"},/turf/open/floor/plating,/area/security/detectives_office) +"aBf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/detectives_office) +"aBg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aBh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aBi" = (/turf/closed/wall,/area/storage/primary) +"aBj" = (/turf/closed/wall/r_wall,/area/storage/primary) +"aBk" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/vending/wardrobe/cap_wardrobe,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBl" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBm" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBn" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBo" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBp" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aBq" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"aBr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) +"aBs" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBt" = (/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBu" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBx" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/ai_monitored/turret_protected/ai_upload"; dir = 1; name = "Upload APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aBy" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) +"aBz" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/item/storage/secure/safe{pixel_x = -22; pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBA" = (/obj/machinery/computer/security/telescreen/vault{pixel_y = 30},/obj/machinery/computer/security/mining,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBB" = (/obj/machinery/computer/cargo/request,/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBC" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; name = "Monastery Monitor"; network = list("monastery"); pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBD" = (/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Head of Personnel's Office"},/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBE" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/obj/machinery/pdapainter{pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBF" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/bed/dogbed/ian,/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBG" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aBH" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Central Hall APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aBI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aBJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aBK" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/item/crowbar,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aBL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm1Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) +"aBM" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm1Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aBN" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aBO" = (/obj/machinery/button/door{id = "Dorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aBP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aBQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aBR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aBS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aBT" = (/obj/structure/closet/wardrobe/white,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aBU" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aBW" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aBX" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/jackboots,/obj/item/storage/backpack,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) +"aBY" = (/obj/item/kirbyplants{icon_state = "plant-05"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aBZ" = (/obj/machinery/light{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"aCa" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/port) +"aCc" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aCd" = (/obj/machinery/vending/cola/random,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aCe" = (/obj/structure/filingcabinet/employment,/turf/open/floor/wood,/area/lawoffice) +"aCf" = (/obj/machinery/vending/wardrobe/law_wardrobe,/turf/open/floor/wood,/area/lawoffice) +"aCg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aCh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aCi" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 12},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCj" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Detective's office"; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCk" = (/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCm" = (/obj/item/storage/briefcase,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCn" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "datboidetective"; name = "Privacy Shutters"; pixel_x = 2; pixel_y = 26},/obj/machinery/light_switch{pixel_x = -8; pixel_y = 27},/obj/structure/filingcabinet/security,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCo" = (/obj/structure/closet/secure_closet/detective,/obj/item/hand_labeler,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aCp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aCq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aCr" = (/obj/machinery/vending/assist,/obj/structure/sign/poster/official/pda_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aCs" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCt" = (/obj/structure/table,/obj/item/wrench,/obj/item/analyzer,/obj/machinery/requests_console{department = "Tool Storage"; pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCu" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/item/screwdriver{pixel_y = 16},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCv" = (/obj/structure/table,/obj/item/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/assembly/igniter,/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/item/assembly/voice,/obj/structure/noticeboard{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCw" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/multitool,/obj/item/multitool,/obj/machinery/airalarm{pixel_y = 22},/obj/item/flashlight,/obj/item/electronics/airlock,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCx" = (/obj/structure/sign/poster/official/obey{pixel_y = 32},/obj/machinery/disposal/deliveryChute{name = "Crate Disposal Chute"; pixel_y = 6},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southright{name = "Crate Disposal Chute"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aCy" = (/obj/structure/displaycase/captain,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCz" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCC" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = 25},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aCD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"aCE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"aCF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aCG" = (/obj/structure/table,/obj/item/aiModule/supplied/quarantine,/obj/machinery/camera/motion{c_tag = "AI Upload Port"; dir = 4; network = list("aiupload")},/obj/item/aiModule/reset,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCK" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCM" = (/obj/structure/table,/obj/item/aiModule/supplied/freeform,/obj/machinery/camera/motion{c_tag = "AI Upload Starboard"; dir = 8; network = list("aiupload")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aCN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) +"aCO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aCP" = (/obj/structure/table/wood,/obj/item/pen{layer = 4},/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 6},/obj/item/paper_bin{layer = 2.9},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCQ" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCR" = (/obj/machinery/holopad,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCS" = (/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCT" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access_txt = "57"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aCW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aCX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aCY" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aCZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aDa" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aDb" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aDc" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aDd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) +"aDe" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) +"aDf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aDg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aDh" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Dormitories Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aDi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/dorms) +"aDj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white/side,/area/crew_quarters/dorms) +"aDk" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 8},/area/crew_quarters/dorms) +"aDl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aDm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aDo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDq" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDr" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aDu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aDv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aDw" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "Tool Storage APC"; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) +"aDx" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/storage/primary) +"aDy" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/primary) +"aDz" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/storage/primary) +"aDA" = (/turf/open/floor/plasteel,/area/storage/primary) +"aDB" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aDC" = (/obj/structure/table/wood,/obj/item/storage/lockbox/medal,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aDD" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aDE" = (/obj/structure/chair/comfy/brown,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aDF" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aDG" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aDH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access_txt = "20"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aDI" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aDJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aDK" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aDL" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) +"aDM" = (/obj/machinery/holopad,/obj/machinery/camera/motion{c_tag = "AI Upload Center"; dir = 1; network = list("aiupload")},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -28},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) +"aDN" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/structure/sign/plaques/kiddie{pixel_x = 32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) +"aDP" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"aDQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access_txt = "57"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"aDR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 15},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aDS" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aDT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aDU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aDV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aDW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aDX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aDY" = (/obj/machinery/power/apc{dir = 4; name = "Head of Personnel APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aDZ" = (/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEb" = (/obj/machinery/newscaster{pixel_x = 32; pixel_y = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitories"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aEd" = (/turf/closed/wall,/area/crew_quarters/toilet/restrooms) +"aEe" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aEf" = (/obj/structure/urinal{pixel_y = 32},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aEg" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aEh" = (/obj/structure/urinal{pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aEi" = (/obj/effect/landmark/blobstart,/obj/item/toy/beach_ball/holoball,/turf/open/floor/plating,/area/crew_quarters/toilet/restrooms) +"aEj" = (/turf/closed/wall,/area/maintenance/department/cargo) +"aEk" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aEl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aEm" = (/obj/structure/table/wood,/obj/item/flashlight/lamp{pixel_x = 3; pixel_y = 6},/turf/open/floor/carpet,/area/security/detectives_office) +"aEn" = (/obj/structure/table/wood,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/security/detectives_office) +"aEo" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes,/obj/item/lighter,/obj/item/clothing/glasses/hud/security/sunglasses,/turf/open/floor/carpet,/area/security/detectives_office) +"aEp" = (/obj/structure/table/wood,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet,/area/security/detectives_office) +"aEq" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/reagent_containers/food/drinks/bottle/whiskey{pixel_x = -1; pixel_y = 9},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 7; pixel_y = 2},/turf/open/floor/carpet,/area/security/detectives_office) +"aEr" = (/obj/machinery/power/apc{dir = 4; name = "Detective's Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aEs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aEt" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/machinery/light{dir = 8},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) +"aEu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/storage/primary) +"aEv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/storage/primary) +"aEw" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/mechanical{pixel_x = -2},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aEx" = (/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/disk/nuclear,/obj/machinery/light{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aEy" = (/obj/structure/table/wood,/obj/item/hand_tele,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aEz" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aEA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aEB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aEC" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Bridge Port Entrance"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aED" = (/obj/structure/table,/obj/item/aiModule/core/full/asimov,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/item/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/item/aiModule/core/full/custom,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aEE" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aEF" = (/obj/machinery/computer/upload/ai{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) +"aEG" = (/obj/machinery/flasher{id = "AI"; pixel_y = -6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) +"aEH" = (/obj/machinery/computer/upload/borg{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) +"aEI" = (/obj/structure/table,/obj/item/aiModule/supplied/oxygen,/obj/item/aiModule/zeroth/oneHuman,/obj/machinery/door/window{dir = 8; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/aiModule/reset/purge,/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/item/aiModule/supplied/protectStation,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) +"aEJ" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Bridge Starboard Entrance"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) +"aEK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"aEL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aEM" = (/obj/item/kirbyplants{icon_state = "plant-24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aEN" = (/obj/structure/table/wood,/obj/item/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/silver_ids,/obj/item/storage/box/ids,/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"aEO" = (/obj/machinery/computer/secure_data{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aEP" = (/obj/machinery/computer/card{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aEQ" = (/obj/structure/chair/office/dark,/obj/machinery/button/flasher{id = "hopflash"; pixel_x = 38; pixel_y = -25},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 25; pixel_y = -26; req_access_txt = "28"},/obj/machinery/button/door{id = "hopqueue"; name = "Queue Shutters Control"; pixel_x = 25; pixel_y = -36; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = 38; pixel_y = -35},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aER" = (/obj/structure/table/wood,/obj/item/stamp/hop{pixel_x = -4; pixel_y = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) +"aES" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Vault"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aET" = (/turf/closed/wall,/area/storage/emergency/starboard) +"aEU" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/item/storage/toolbox,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/storage/emergency/starboard) +"aEW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aEZ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFb" = (/obj/machinery/light_switch{pixel_y = 25},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFc" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFe" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFf" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFg" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFi" = (/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFj" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "MiniSat Entrance"; network = list("minisat")},/turf/open/space,/area/space/nearstation) +"aFk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/minor/bowler_or_that,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"aFm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) +"aFn" = (/turf/open/floor/carpet,/area/security/detectives_office) +"aFo" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/effect/landmark/start/detective,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) +"aFp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/carpet,/area/security/detectives_office) +"aFr" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Entrance"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aFs" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/electronics/apc,/obj/item/t_scanner,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) +"aFt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"aFu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"aFv" = (/obj/structure/table,/obj/item/weldingtool,/obj/item/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"aFw" = (/obj/structure/table/wood,/obj/item/camera,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aFx" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) +"aFy" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aFz" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aFA" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; name = "Privacy Shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) +"aFB" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2; name = "Reception Window"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) +"aFC" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aFD" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/item/taperecorder,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aFE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/storage/emergency/starboard) +"aFF" = (/obj/item/storage/box/lights/mixed,/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Starboard Emergency Storage APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/emergency/starboard) +"aFG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFH" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFK" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFM" = (/obj/machinery/shower{dir = 8},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aFN" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFO" = (/obj/effect/decal/cleanable/vomit/old,/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFP" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFQ" = (/obj/structure/table,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/food/condiment/rice,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aFU" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"aFV" = (/obj/machinery/door/airlock/maintenance{name = "Detective Maintenance"; req_access_txt = "4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aFW" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aFX" = (/obj/machinery/computer/med_data{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) +"aFY" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) +"aGa" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aGb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aGc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aGd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) +"aGe" = (/obj/structure/rack,/obj/item/wirecutters,/obj/item/flashlight,/obj/item/gps,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGf" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGg" = (/obj/structure/table,/obj/item/crowbar,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/gloves/color/fyellow,/obj/item/assembly/timer,/obj/item/radio,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGh" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGi" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGj" = (/obj/structure/disposalpipe/junction/flip,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"aGk" = (/obj/machinery/vending/boozeomat/pubby_captain,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aGl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aGm" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/computer/arcade{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"aGn" = (/obj/item/kirbyplants/photosynthetic{layer = 3.1},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) +"aGo" = (/obj/structure/lattice,/obj/structure/sign/logo{pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGp" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign2"; pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGq" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign3"; pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGr" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign4"; pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGs" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign5"; pixel_y = 32},/turf/open/space,/area/space/nearstation) +"aGt" = (/obj/machinery/vending/cola,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGu" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGv" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGw" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGx" = (/obj/machinery/flasher{id = "hopflash"; pixel_x = 28; pixel_y = -28},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGy" = (/obj/structure/table,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGz" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/starboard) +"aGB" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency/starboard) +"aGC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGF" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGH" = (/obj/machinery/camera{c_tag = "Dormitory Toilets"; dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGI" = (/obj/machinery/shower{dir = 4},/obj/structure/sign/poster/official/no_erp{pixel_x = -32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGJ" = (/obj/machinery/shower{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aGK" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/cookie{desc = "It has a distinctly eldritch taste to it."; name = "grandma's cookie"},/obj/item/cigbutt,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGL" = (/obj/structure/chair/stool,/obj/item/clothing/suit/apron/chef,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGM" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGN" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGO" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGP" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aGU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGV" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGX" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plating,/area/storage/primary) +"aGY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plasteel,/area/storage/primary) +"aGZ" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plating,/area/storage/primary) +"aHb" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aHc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aHd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aHe" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aHf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/hallway/primary/central) +"aHg" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aHh" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/primary/central) +"aHj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/primary/central) +"aHk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/central) +"aHl" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHn" = (/obj/machinery/door/airlock/abandoned{name = "Starboard Emergency Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/starboard) +"aHo" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aHp" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aHq" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aHr" = (/obj/machinery/shower{dir = 4},/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aHs" = (/obj/structure/closet/crate,/obj/item/cultivator,/obj/item/shovel/spade,/obj/item/storage/bag/plants/portaseeder,/obj/item/seeds/wheat/rice,/obj/item/seeds/replicapod,/obj/item/seeds/carrot,/obj/item/seeds/tomato,/obj/item/reagent_containers/glass/bottle/nutrient/ez,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aHt" = (/obj/effect/decal/cleanable/egg_smudge,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aHu" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aHz" = (/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) +"aHA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"aHC" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aHE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorms"; location = "Tool"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHR" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHX" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIc" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aId" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIe" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"aIi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIj" = (/obj/machinery/vending/cigarette,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/sign/departments/restroom{pixel_x = 32},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/central) +"aIk" = (/obj/machinery/power/apc{dir = 4; name = "Dormitory Bathrooms APC"; pixel_x = 26},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aIl" = (/obj/structure/toilet/secret/low_loot{dir = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aIp" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aIq" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/lawyer,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aIr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space,/area/solar/port) +"aIC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aIH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aIL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorms"; location = "Tool"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIN" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIO" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIT" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIX" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/observer_start,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIY" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aIZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJa" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJd" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Robo"; location = "HoP"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJe" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJh" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJi" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HoP"; location = "Dorms"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/hallway/primary/central) +"aJn" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aJo" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/table,/obj/structure/bedsheetbin/towel,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aJp" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aJq" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"aJr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) +"aJs" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aJt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"aJv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aJw" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/chaplain,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aJD" = (/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Departure Lounge Fore"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aJE" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aJF" = (/obj/structure/chair{dir = 8},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/secondary/exit/departure_lounge"; dir = 1; name = "Departure Lounge APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aJG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -40},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJH" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJM" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Bathroom"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJT" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJW" = (/obj/machinery/camera{c_tag = "Central Primary Hallway EVA"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJX" = (/obj/structure/sign/directions/security{dir = 8; pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = -32},/obj/structure/sign/directions/science{pixel_x = -32; pixel_y = -40},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKa" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKe" = (/obj/machinery/camera{c_tag = "Dormitories Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKg" = (/obj/item/kirbyplants{icon_state = "plant-04"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/primary/central) +"aKh" = (/obj/machinery/light_switch{pixel_x = -25},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aKi" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aKj" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Dormitory Cyborg Recharging Station"},/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"aKk" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/oil,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKo" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"aKp" = (/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKq" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKr" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/curator,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aKy" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"aKz" = (/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"aKA" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aKB" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"aKD" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aKE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aKG" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aKH" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aKI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aKJ" = (/turf/closed/wall,/area/storage/art) +"aKK" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/art) +"aKL" = (/obj/machinery/door/airlock/public/glass{name = "Art Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/storage/art) +"aKM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/cafeteria/lunchroom) +"aKN" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/cafeteria/lunchroom) +"aKO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Lunchroom"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/cafeteria/lunchroom) +"aKP" = (/turf/closed/wall,/area/crew_quarters/cafeteria/lunchroom) +"aKQ" = (/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) +"aKR" = (/obj/machinery/door/airlock{id_tag = "Potty1"; name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aKS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) +"aKT" = (/turf/closed/wall,/area/maintenance/department/crew_quarters/bar) +"aKU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aKV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/hallway/primary/central) +"aKY" = (/turf/closed/wall/r_wall,/area/storage/eva) +"aKZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/eva) +"aLa" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter"; name = "EVA Storage Shutters"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/eva) +"aLb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "EVA Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/eva) +"aLc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/teleporter) +"aLd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command/glass{name = "Teleporter"; req_access_txt = "17"},/turf/open/floor/plasteel,/area/teleporter) +"aLe" = (/turf/closed/wall,/area/security/checkpoint/supply) +"aLf" = (/turf/closed/wall,/area/quartermaster/office) +"aLg" = (/turf/closed/wall,/area/quartermaster/storage) +"aLh" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLi" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLj" = (/obj/effect/spawner/lootdrop/grille_or_trash,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLk" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLl" = (/obj/item/storage/box/mousetraps,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aLm" = (/turf/closed/wall,/area/maintenance/disposal) +"aLn" = (/obj/machinery/door/poddoor{id = "trash"; name = "disposal bay door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/disposal) +"aLo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) +"aLu" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aLv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aLw" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/art) +"aLx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXnineteen,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aLy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aLz" = (/obj/machinery/photocopier,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aLA" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/friedegg,/obj/item/kitchen/fork,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aLB" = (/obj/structure/chair{dir = 8; name = "Defense"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aLC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aLD" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/vending/cola,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aLE" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/landmark/xeno_spawn,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aLF" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aLG" = (/obj/structure/urinal{pixel_y = 32},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/door{id = "Potty1"; name = "Bathroom Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 4; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light_switch{pixel_x = 36; pixel_y = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aLH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aLI" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aLK" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aLL" = (/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aLQ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/button/door{id = "evashutter"; name = "EVA Shutters Control"; pixel_x = -24; req_access_txt = "18"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aLR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aLS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aLT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aLU" = (/obj/structure/closet/crate/rcd,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aLV" = (/turf/closed/wall,/area/storage/eva) +"aLW" = (/obj/machinery/power/apc{dir = 8; name = "Teleporter APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/airalarm{pixel_y = 22},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/teleporter) +"aLX" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/teleporter) +"aLY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/teleporter) +"aLZ" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/teleporter) +"aMa" = (/obj/structure/closet/crate,/obj/machinery/button/door{id = "teleshutter"; name = "Teleporter Shutters Control"; pixel_x = 25; pixel_y = -5; req_access_txt = "17"},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) +"aMb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMd" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aMe" = (/obj/machinery/computer/security/mining,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Cargo Security Post"},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aMf" = (/obj/machinery/computer/secure_data,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aMg" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating,/area/quartermaster/sorting) +"aMh" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMi" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/quartermaster/sorting) +"aMj" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMk" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMl" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMm" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/plasticflaps,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMn" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) +"aMo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/warehouse) +"aMp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMq" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMr" = (/obj/structure/closet/crate,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMt" = (/obj/structure/closet/cardboard,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Cargo Warehouse"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMu" = (/obj/item/cigbutt/cigarbutt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMv" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 4; name = "Cargo Warehouse APC"; pixel_x = 26},/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aMw" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMx" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMy" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMz" = (/obj/structure/grille/broken,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/crowbar,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMA" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMB" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aMD" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aME" = (/obj/machinery/button/massdriver{id = "trash"; pixel_y = 32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) +"aMF" = (/obj/machinery/conveyor_switch/oneway{id = "garbagestacked"; name = "disposal conveyor"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) +"aMG" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) +"aMH" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aML" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aMR" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMS" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMT" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aMU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/storage/art) +"aMV" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/storage/toolbox/artistic{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/artistic{pixel_x = -3},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aMW" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aMX" = (/obj/structure/table,/obj/item/airlock_painter,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Art Storage APC"; pixel_x = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aMY" = (/obj/structure/chair{dir = 1},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aMZ" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Lunchroom"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aNa" = (/obj/structure/cable,/obj/machinery/power/apc{name = "Cafeteria APC"; pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aNb" = (/obj/machinery/vending/sustenance{contraband = list(/obj/item/kitchen/knife = 6, /obj/item/reagent_containers/food/drinks/coffee = 12); desc = "A vending machine which vends food."; product_ads = "Sufficiently healthy."},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) +"aNc" = (/obj/structure/toilet/secret/low_loot{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aNd" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aNe" = (/obj/structure/cable,/obj/machinery/power/apc/highcap/five_k{name = "Auxiliary Restrooms APC"; pixel_y = -24},/obj/item/soap/nanotrasen,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) +"aNf" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aNg" = (/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aNh" = (/obj/item/extinguisher,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aNi" = (/obj/structure/grille/broken,/obj/item/crowbar,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aNj" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aNm" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aNp" = (/obj/structure/rack,/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aNq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/eva) +"aNr" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aNs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/eva) +"aNt" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide/eva,/obj/item/tank/jetpack/carbondioxide/eva{pixel_x = -4; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aNu" = (/obj/structure/closet/crate,/obj/item/melee/flyswatter,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) +"aNv" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/teleporter) +"aNw" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/teleporter) +"aNx" = (/turf/open/floor/plasteel,/area/teleporter) +"aNy" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) +"aNz" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) +"aNA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aNB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aNC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/supply) +"aND" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/book/manual/wiki/security_space_law,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aNE" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/depsec/supply,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aNF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aNH" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNJ" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNK" = (/obj/structure/table,/obj/item/destTagger,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNL" = (/obj/item/stack/wrapping_paper{pixel_x = 3; pixel_y = 4},/obj/item/stack/packageWrap{pixel_x = -1; pixel_y = -1},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNM" = (/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/hand_labeler,/obj/item/hand_labeler,/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aNN" = (/obj/structure/closet/crate/freezer,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aNO" = (/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aNP" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aNQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aNR" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aNT" = (/obj/machinery/mass_driver{dir = 1; id = "trash"},/obj/machinery/button/massdriver{id = "trash"; pixel_x = -28},/turf/open/floor/plating,/area/maintenance/disposal) +"aNU" = (/obj/machinery/mineral/stacking_machine{input_dir = 8; output_dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aNV" = (/obj/machinery/conveyor{dir = 4; id = "garbagestacked"},/turf/open/floor/plating,/area/maintenance/disposal) +"aNX" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aNY" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) +"aOf" = (/obj/structure/chair,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"aOg" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"aOh" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"aOk" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aOm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/wrench,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aOs" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) +"aOt" = (/obj/structure/table,/obj/item/instrument/glockenspiel{pixel_y = 3},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aOu" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/storage/crayons,/obj/machinery/light,/obj/machinery/camera{c_tag = "Art Storage"; dir = 1},/obj/item/hand_labeler,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aOv" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 20; layer = 3.1},/obj/item/stack/sheet/glass{amount = 20; layer = 3.2},/obj/item/stack/rods{amount = 20; layer = 3.3},/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/nineteenXnineteen,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) +"aOw" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aOx" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aOy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aOz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aOA" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aOB" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "EVA"; pixel_x = -32},/obj/machinery/camera{c_tag = "EVA Storage"; dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aOC" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel,/area/storage/eva) +"aOD" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aOE" = (/obj/structure/table,/obj/item/hand_tele,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Teleporter"; dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aOF" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/teleporter) +"aOG" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) +"aOH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) +"aOI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) +"aOJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Shutters"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) +"aOK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aOL" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aOM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aON" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/checkpoint/supply) +"aOO" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aOP" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aOQ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aOR" = (/obj/machinery/door/airlock/security/glass{name = "Cargo Security Post"; req_access_txt = "63"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aOS" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aOT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aOU" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aOV" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) +"aOW" = (/obj/machinery/door/window/eastleft{dir = 8; icon_state = "right"; name = "Mail"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/sorting) +"aOX" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) +"aOY" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aOZ" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aPa" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aPb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aPc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aPd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/storage) +"aPf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/shard,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aPg" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aPi" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) +"aPn" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aPo" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit/departure_lounge) +"aPq" = (/obj/machinery/light{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Departure Lounge Starboard"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aPt" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/mining/aux_base) +"aPv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aPw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aPx" = (/obj/machinery/light/small{dir = 1},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPy" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aPz" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aPA" = (/obj/item/trash/cheesie,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPB" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPC" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/effect/spawner/lootdrop/gloves,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPD" = (/obj/machinery/power/apc{dir = 1; name = "Bar Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPE" = (/turf/closed/wall,/area/crew_quarters/bar) +"aPF" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPG" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aPH" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aPI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aPJ" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/storage/eva) +"aPK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) +"aPL" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aPM" = (/obj/structure/table,/obj/item/beacon,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPN" = (/obj/machinery/computer/teleporter{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPO" = (/obj/machinery/teleport/station,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPP" = (/obj/machinery/teleport/hub,/obj/machinery/light,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPQ" = (/obj/structure/closet/crate,/obj/item/crowbar,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) +"aPR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aPS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aPT" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Security Post - Cargo APC"; pixel_x = -24},/obj/structure/closet/secure_closet/security/cargo,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aPU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aPV" = (/obj/structure/filingcabinet/security,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aPW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/office) +"aPX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aPY" = (/turf/open/floor/plasteel,/area/quartermaster/office) +"aPZ" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aQa" = (/obj/structure/disposalpipe/sorting/wrap{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aQb" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/camera{c_tag = "Cargo Mailroom"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aQc" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQd" = (/obj/item/flashlight,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQe" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQf" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQg" = (/obj/structure/closet/crate/medical,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aQj" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 2; sortType = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aQk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/disposal) +"aQn" = (/obj/machinery/conveyor_switch/oneway{id = "garbage"; name = "disposal conveyor"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aQo" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"aQp" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) +"aQr" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aQs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aQt" = (/obj/machinery/status_display/evac,/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) +"aQu" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/ywflowers,/obj/structure/window/reinforced/fulltile,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aQv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aQw" = (/obj/machinery/computer/shuttle/mining,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"aQx" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/pipe_dispenser,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"aQz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aQB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aQC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aQD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aQE" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQF" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQH" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aQI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aQJ" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"aQK" = (/obj/structure/grille,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQL" = (/obj/structure/grille/broken,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQM" = (/obj/item/reagent_containers/glass/bucket,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aQR" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQS" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar) +"aQT" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken6"},/area/crew_quarters/bar) +"aQU" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "Bar Backroom"},/turf/open/floor/wood,/area/crew_quarters/bar) +"aQV" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/obj/item/stack/cable_coil,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/wood,/area/crew_quarters/bar) +"aQW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQX" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/broken_bottle,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aQY" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aQZ" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/crowbar,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{name = "EVA Storage APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/storage/eva) +"aRa" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/eva) +"aRb" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/storage/eva) +"aRc" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/rglass{amount = 50},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) +"aRd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aRe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/departments/cargo{pixel_x = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aRf" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/supply) +"aRg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Cargo Security Post"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"aRh" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRi" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRj" = (/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRk" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc/highcap/fifteen_k{dir = 4; name = "Delivery Office APC"; pixel_x = 28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aRm" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/turf/open/floor/plating,/area/quartermaster/sorting) +"aRn" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aRo" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aRp" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aRq" = (/obj/structure/closet/crate/internals,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"aRs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aRt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/disposal) +"aRu" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aRv" = (/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aRw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aRy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"aRz" = (/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aRB" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aRC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aRD" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aRE" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aRF" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aRG" = (/obj/structure/rack,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/assault_pod/mining,/obj/machinery/camera{c_tag = "Auxillary Base Construction"; dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/computer/security/telescreen/auxbase{dir = 8; pixel_x = 30},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"aRH" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/hallway/primary/central) +"aRI" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"aRJ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRK" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRL" = (/turf/closed/wall,/area/hydroponics) +"aRM" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRN" = (/turf/closed/wall,/area/crew_quarters/kitchen) +"aRO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/crew_quarters/kitchen) +"aRP" = (/obj/structure/plasticflaps/opaque,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"aRQ" = (/obj/item/gun/ballistic/revolver/doublebarrel{pixel_y = 11},/obj/structure/table/wood,/obj/item/coin/silver,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c100,/turf/open/floor/wood,/area/crew_quarters/bar) +"aRR" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/chair/wood/normal{dir = 8},/obj/item/clothing/under/rank/civilian/janitor/maid,/turf/open/floor/wood{icon_state = "wood-broken"},/area/crew_quarters/bar) +"aRS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"aRT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) +"aRU" = (/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance"; req_access_txt = "25"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance"; req_access_txt = "18"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRY" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aRZ" = (/obj/item/trash/tray,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSa" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/grown/bananapeel,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSb" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/seeds/banana,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSc" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aSd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aSe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aSf" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aSg" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/mining/glass{name = "Mailroom"; req_one_access_txt = "48;50"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"aSh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/quartermaster/sorting) +"aSi" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aSj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aSk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aSl" = (/obj/machinery/power/apc{dir = 4; name = "Cargo Maintenance APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aSm" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/disposal) +"aSn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"aSo" = (/obj/machinery/power/apc{dir = 4; name = "Disposal APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) +"aSu" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/wirecutters,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"aSv" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced{dir = 8},/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aSw" = (/obj/item/statuebust,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aSx" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aSz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSA" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel,/area/hydroponics) +"aSB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"aSC" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"aSE" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Hydroponics Storage"},/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel,/area/hydroponics) +"aSF" = (/obj/machinery/chem_master/condimaster,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"aSG" = (/obj/structure/table,/obj/item/book/manual/hydroponics_pod_people,/obj/item/paper/guides/jobs/hydroponics,/obj/item/reagent_containers/glass/bottle/mutagen,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel,/area/hydroponics) +"aSH" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen) +"aSI" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aSJ" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aSK" = (/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aSL" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Kitchen"},/obj/machinery/door/window/southleft{dir = 8; name = "Kitchen Delivery"; req_access_txt = "28"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"aSM" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/bar) +"aSN" = (/obj/item/assembly/mousetrap,/obj/item/storage/box/mousetraps,/turf/open/floor/wood{icon_state = "wood-broken6"},/area/crew_quarters/bar) +"aSO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood,/area/crew_quarters/bar) +"aSP" = (/turf/open/floor/wood,/area/crew_quarters/bar) +"aSQ" = (/obj/effect/landmark/xeno_spawn,/obj/item/storage/box/beanbag,/turf/open/floor/wood,/area/crew_quarters/bar) +"aSR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/weldingtool,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSS" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aST" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSW" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aSX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aSY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aSZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aTb" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) +"aTf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/office) +"aTi" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTm" = (/turf/open/floor/plasteel,/area/quartermaster/storage) +"aTn" = (/obj/machinery/light{dir = 1},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/quartermaster/storage) +"aTp" = (/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"aTq" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"aTr" = (/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"aTs" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"aTu" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aTv" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aTw" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aTx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aTy" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aTz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"aTA" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal) +"aTB" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/disposal) +"aTC" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) +"aTD" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space,/area/solar/starboard) +"aTE" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) +"aTH" = (/obj/docking_port/stationary{dir = 8; dwidth = 4; height = 15; id = "emergency_home"; name = "PubbyStation emergency evac bay"; width = 20},/turf/open/space/basic,/area/space) +"aTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aTK" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aTL" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aTM" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) +"aTO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Central Primary Hallway Escape"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aTP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aTQ" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/hydroponics) +"aTR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"aTS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aTT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aTU" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics) +"aTW" = (/obj/structure/table,/obj/item/reagent_containers/spray/plantbgone{pixel_y = 3},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/watertank,/turf/open/floor/plasteel,/area/hydroponics) +"aTX" = (/obj/structure/kitchenspike,/obj/item/assembly/mousetrap,/obj/item/reagent_containers/food/snacks/deadmouse,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aTY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aTZ" = (/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aUa" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/item/crowbar,/obj/item/wrench,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aUb" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/bar) +"aUc" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar) +"aUd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) +"aUe" = (/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/wood{icon_state = "wood-broken5"},/area/crew_quarters/bar) +"aUf" = (/turf/closed/wall,/area/crew_quarters/theatre) +"aUg" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aUi" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Cargo"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUj" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUl" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUm" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUo" = (/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "31;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) +"aUp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aUq" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aUs" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aUt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aUy" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/storage) +"aUz" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/storage) +"aUA" = (/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Bay"; width = 12},/turf/open/space/basic,/area/space) +"aUB" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aUC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aUD" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard) +"aUG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aUH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aUI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"aUJ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/central) +"aUK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aUO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aUP" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aUQ" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hydroponics) +"aUR" = (/obj/machinery/door/window/eastright{name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 1; freq = 1400; location = "Hydroponics"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hydroponics) +"aUS" = (/obj/structure/closet/crate/hydroponics,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/reagent_containers/glass/bucket,/obj/item/reagent_containers/glass/bucket,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/hydroponics) +"aUT" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/vending/wardrobe/hydro_wardrobe,/turf/open/floor/plasteel,/area/hydroponics) +"aUU" = (/obj/machinery/power/apc{name = "Hydroponics APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/hydroponics) +"aUW" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel,/area/hydroponics) +"aUX" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aUY" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aUZ" = (/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVa" = (/obj/machinery/holopad,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVb" = (/obj/machinery/light{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVc" = (/obj/machinery/door/window/southleft{name = "Bar Delivery"; req_access_txt = "25"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Bar"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aVd" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVg" = (/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVh" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/bottle/patron{pixel_x = -5; pixel_y = 16},/obj/item/reagent_containers/food/drinks/bottle/cognac{pixel_x = -10; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/grappa{pixel_x = 10; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_x = 2; pixel_y = 4},/obj/machinery/light_switch{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVi" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/bottle/hcider{layer = 3.1; pixel_x = -6; pixel_y = 8},/obj/item/reagent_containers/food/drinks/bottle/wine{layer = 3.1; pixel_x = 3; pixel_y = 5},/obj/item/reagent_containers/food/drinks/bottle/rum{layer = 3.2; pixel_x = -15; pixel_y = 4},/obj/item/reagent_containers/food/drinks/bottle/lizardwine{layer = 3.1; pixel_x = 13; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/tequila{layer = 3.2; pixel_x = 13; pixel_y = 7},/obj/item/reagent_containers/food/drinks/shaker{pixel_x = 1; pixel_y = 13},/obj/item/reagent_containers/food/drinks/bottle/gin{pixel_x = -10; pixel_y = 15},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_x = 28; req_access_txt = "25"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aVk" = (/obj/structure/table/wood,/obj/machinery/airalarm{pixel_y = 22},/obj/item/instrument/accordion{pixel_y = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aVl" = (/obj/structure/dresser,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/contraband/clown{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aVm" = (/obj/machinery/vending/autodrobe,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aVn" = (/obj/machinery/door/airlock/maintenance{name = "Theatre Maintenance"; req_access_txt = "46"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"aVo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aVp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVs" = (/obj/structure/plasticflaps/opaque,/obj/machinery/conveyor{dir = 4; id = "cargodeliver"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) +"aVt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVv" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/conveyor_switch{id = "cargodeliver"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aVw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #1"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVy" = (/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVz" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVB" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/obj/machinery/camera{c_tag = "Cargo Supply Dock"; dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aVE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aVG" = (/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aVH" = (/obj/structure/closet/l3closet/scientist,/obj/item/book/manual/wiki/chemistry,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aVI" = (/obj/structure/closet,/obj/item/canvas/twentythreeXnineteen,/obj/item/canvas/nineteenXnineteen,/obj/item/canvas/twentythreeXtwentythree,/obj/item/storage/crayons,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aVM" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aVN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aVO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aVP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aVQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aVR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aVS" = (/turf/closed/wall,/area/janitor) +"aVT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/janitor) +"aVU" = (/obj/machinery/door/window/eastright{dir = 2; name = "Janitor Delivery"; req_access_txt = "26"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Janitor"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) +"aVV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"aVW" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVX" = (/obj/machinery/power/apc{name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aVZ" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/item/reagent_containers/food/snacks/grown/potato,/obj/item/reagent_containers/food/snacks/grown/potato,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aWa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen) +"aWb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWd" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/carbon/monkey/punpun,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWe" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/camera{c_tag = "Bar Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWm" = (/obj/structure/disposalpipe/segment,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWn" = (/obj/machinery/power/apc{dir = 8; name = "Theatre APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWo" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/mime,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWq" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWr" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 24},/obj/structure/mirror{pixel_x = 28; pixel_y = -2},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aWs" = (/obj/machinery/computer/cargo/request{dir = 4},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) +"aWt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) +"aWu" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) +"aWv" = (/obj/machinery/door/firedoor,/obj/machinery/mineral/ore_redemption{input_dir = 4; output_dir = 8},/turf/open/floor/plasteel/dark,/area/quartermaster/office) +"aWw" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aWx" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #2"},/obj/machinery/camera{c_tag = "Cargo Bay"; dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aWy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aWz" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aWA" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aWB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage) +"aWE" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"aWF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aWI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/camera{c_tag = "Departure Lounge Hallway"; dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aWJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aWK" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"aWM" = (/obj/machinery/washing_machine,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) +"aWN" = (/obj/machinery/camera{c_tag = "Custodial Quarters"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) +"aWO" = (/obj/structure/bed,/obj/effect/landmark/start/janitor,/obj/item/bedsheet/purple,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) +"aWP" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aWQ" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aWR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel,/area/hydroponics) +"aWS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sorting/mail{sortType = 21},/turf/open/floor/plasteel,/area/hydroponics) +"aWT" = (/obj/machinery/light_switch{pixel_x = -4; pixel_y = 30},/obj/structure/sink/kitchen{name = "utility sink"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aWU" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aWV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aWW" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aWX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aWY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXd" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Bar APC"; pixel_x = 27},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXh" = (/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aXk" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Theatre Storage"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXm" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 18},/obj/machinery/requests_console{department = "Theatre"; name = "theatre RC"; pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/clown,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXo" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/cardboard_cutout,/obj/structure/mirror{pixel_x = 28; pixel_y = -2},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) +"aXp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre) +"aXq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/cargo{pixel_x = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXs" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 2; name = "Cargo Desk"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aXt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 2; name = "Cargo Desk"; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/office) +"aXu" = (/obj/machinery/door/firedoor,/obj/machinery/autolathe,/turf/open/floor/plasteel/dark,/area/quartermaster/office) +"aXv" = (/obj/machinery/newscaster{pixel_x = 32},/obj/machinery/camera{c_tag = "Cargo Foyer"; dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aXw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #3"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aXx" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aXy" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) +"aXz" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) +"aXA" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) +"aXB" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/security/checkpoint/customs) +"aXC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aXF" = (/obj/structure/chair{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aXG" = (/obj/structure/table,/obj/effect/holodeck_effect/cards{pixel_y = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"aXH" = (/turf/closed/wall/r_wall,/area/security/checkpoint/customs) +"aXI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "papersplease"; name = "security shutters"},/turf/open/floor/plating,/area/security/checkpoint/customs) +"aXJ" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westright{dir = 2; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/door/poddoor/preopen{id = "papersplease"; name = "privacy shutters"},/obj/item/folder/red,/obj/item/pen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aXK" = (/turf/closed/wall,/area/security/checkpoint/customs) +"aXL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/janitor) +"aXN" = (/obj/structure/bedsheetbin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) +"aXO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) +"aXP" = (/obj/structure/table,/obj/item/clothing/under/costume/maid,/obj/item/key/janitor,/obj/item/grenade/clusterbuster/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) +"aXQ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aXR" = (/obj/item/reagent_containers/glass/bucket,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aXS" = (/turf/open/floor/plasteel,/area/hydroponics) +"aXT" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hydroponics) +"aXU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"aXV" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aXW" = (/obj/machinery/plantgenes{pixel_y = 6},/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aXX" = (/obj/machinery/hydroponics/constructable,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aXY" = (/obj/machinery/hydroponics/constructable,/obj/structure/sign/departments/botany{pixel_y = 32},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aXZ" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aYa" = (/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) +"aYb" = (/obj/machinery/door/airlock{name = "Bar Access"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"aYd" = (/obj/machinery/door/airlock{name = "Service Access"; req_one_access_txt = "25; 26; 28; 35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYe" = (/obj/structure/table/reinforced,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 10},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYf" = (/obj/structure/table/reinforced,/obj/item/book/manual/wiki/barman_recipes,/obj/item/reagent_containers/rag,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYg" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYh" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/instrument/guitar,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYi" = (/obj/structure/table/reinforced,/obj/structure/disposalpipe/segment,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 10},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYj" = (/obj/machinery/door/airlock{name = "Theatre Storage"; req_access_txt = "46"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aYk" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aYl" = (/obj/structure/table/wood,/obj/item/soap,/obj/structure/table/wood,/obj/item/bikehorn,/obj/item/toy/cattoy,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aYm" = (/obj/structure/closet/crate/wooden/toy,/obj/item/lipstick/random,/obj/item/clothing/gloves/color/rainbow,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) +"aYn" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -32},/obj/machinery/computer/cargo{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYo" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYp" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/cargo_technician,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYq" = (/obj/item/stamp{pixel_x = -3; pixel_y = 3},/obj/item/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYr" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYu" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aYv" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #4"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYB" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = 24; pixel_y = -8},/obj/machinery/button/door{id = "QMLoaddoor"; layer = 4; name = "Loading Doors"; pixel_x = 24; pixel_y = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aYC" = (/obj/structure/grille/broken,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aYD" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/box/matches,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aYE" = (/obj/structure/table,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aYF" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 10},/obj/item/stack/rods{amount = 25},/obj/item/shard{icon_state = "small"},/obj/item/light/bulb,/turf/open/floor/plating,/area/maintenance/department/cargo) +"aYG" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry) +"aYH" = (/obj/machinery/computer/security{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aYI" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aYJ" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aYK" = (/obj/structure/closet/secure_closet/security,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aYL" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aYM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Quarters"; req_access_txt = "26"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) +"aYN" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aYO" = (/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aYP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"aYQ" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/hydroponics) +"aYR" = (/obj/machinery/vending/dinnerware,/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYS" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYT" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYU" = (/obj/machinery/processor,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aYX" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = -2},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"aYY" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aYZ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool/bar,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZg" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aZh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZj" = (/obj/machinery/status_display/supply{pixel_x = -32},/obj/machinery/computer/bounty{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aZk" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) +"aZl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Cargo Office"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"aZm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"aZn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"aZo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZq" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZs" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"aZv" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aZw" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/cargo) +"aZx" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) +"aZy" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"aZF" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZJ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZK" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"aZL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZO" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/janitor) +"aZP" = (/turf/open/floor/plasteel,/area/janitor) +"aZQ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/power/apc{dir = 1; name = "Custodial Closet APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/janitor) +"aZR" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aZS" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hydroponics) +"aZT" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aZU" = (/obj/machinery/vending/hydronutrients,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hydroponics) +"aZV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aZW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aZX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aZZ" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen) +"baa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bab" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bac" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bad" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/item/storage/fancy/donut_box,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"bae" = (/obj/structure/chair/stool/bar,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bag" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bah" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"ban" = (/obj/structure/disposalpipe/segment,/obj/machinery/newscaster{pixel_x = 32; pixel_y = 1},/obj/structure/chair/wood/normal,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bao" = (/obj/machinery/computer/slot_machine,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bap" = (/obj/machinery/computer/slot_machine,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"baq" = (/obj/machinery/computer/arcade,/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bar" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bas" = (/obj/structure/table,/obj/item/pen,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/item/paper_bin{layer = 2.9},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/quartermaster/office) +"bat" = (/obj/structure/table,/obj/item/clipboard,/obj/item/folder/yellow,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office) +"bau" = (/obj/machinery/photocopier,/obj/machinery/light,/obj/machinery/camera{c_tag = "Cargo Office"; dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"bav" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; name = "Cargo Office APC"; pixel_x = 1; pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/office) +"baw" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office) +"bax" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"baz" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) +"baA" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{name = "Cargo Bay APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baE" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) +"baF" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/quartermaster/storage) +"baG" = (/turf/closed/wall,/area/maintenance/solars/starboard) +"baH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Bridge External Access"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) +"baI" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) +"baJ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baK" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baL" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baP" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"baQ" = (/obj/machinery/computer/secure_data{dir = 4},/obj/machinery/button/door{id = "papersplease"; name = "Shutters Control Button"; pixel_x = -26; pixel_y = 6; req_access_txt = "1"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = -26; pixel_y = -4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"baR" = (/obj/item/pen,/obj/structure/table,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"baS" = (/obj/structure/chair/office/dark,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"baT" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"baU" = (/obj/machinery/power/apc{name = "Security Checkpoint APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"baV" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"baW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/button/door{id = "jangarage"; name = "Custodial Closet Shutters Control"; pixel_x = 25; req_access_txt = "26"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"baX" = (/obj/vehicle/ridden/janicart,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/button/door{id = "jangarage"; name = "Custodial Closet Shutters Control"; pixel_x = -25; req_access_txt = "26"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/janitor) +"baY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/janitor) +"baZ" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_x = 32},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/janitor) +"bba" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics) +"bbb" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hydroponics) +"bbc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bbd" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) +"bbg" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bbh" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/food/condiment/peppermill,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bbi" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bbl" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"bbm" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bbo" = (/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbp" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bbr" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbs" = (/obj/item/cane,/obj/item/clothing/head/that,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbt" = (/obj/structure/disposalpipe/segment,/obj/structure/table/wood,/obj/item/clothing/under/dress/sundress,/obj/item/clothing/under/suit/waiter,/obj/item/clothing/under/dress/blacktango,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bbu" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/bar) +"bbv" = (/obj/structure/chair/stool,/obj/item/trash/can,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbw" = (/obj/effect/landmark/start/assistant,/obj/structure/chair/stool,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bbx" = (/obj/structure/chair/stool,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bby" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bbz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bbA" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Office Maintenance"; req_access_txt = "50"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office) +"bbB" = (/obj/structure/table,/obj/item/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/turf/open/floor/plasteel,/area/quartermaster/office) +"bbC" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/hand_labeler,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/office) +"bbD" = (/obj/machinery/vending/wardrobe/cargo_wardrobe,/turf/open/floor/plasteel,/area/quartermaster/office) +"bbE" = (/turf/closed/wall,/area/quartermaster/qm) +"bbF" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/quartermaster/qm) +"bbG" = (/obj/machinery/door/airlock/mining/glass{name = "Quartermaster"; req_access_txt = "41"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bbH" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/qm) +"bbI" = (/turf/closed/wall,/area/quartermaster/miningdock) +"bbJ" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bbK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bbL" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bbM" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/multitool,/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bbP" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/starboard) +"bbQ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bbR" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bbS" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bbT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bbU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bbV" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westright{dir = 1; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "papersplease"; name = "privacy shutters"},/obj/item/crowbar,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"bbW" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "jangarage"; name = "Custodial Closet Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/janitor) +"bbX" = (/obj/structure/janitorialcart,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/janitor) +"bbY" = (/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 8},/obj/machinery/vending/wardrobe/jani_wardrobe,/turf/open/floor/plasteel,/area/janitor) +"bbZ" = (/obj/machinery/seed_extractor,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hydroponics) +"bca" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Hydroponics South"; dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"bcb" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{base_state = "left"; dir = 1; icon_state = "left"; name = "Hydroponics Desk"; req_access_txt = "35"},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel/dark,/area/hydroponics) +"bcc" = (/obj/machinery/biogenerator,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/hydroponics) +"bcd" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1; name = "Hydroponics Desk"; req_access_txt = "35"},/obj/item/reagent_containers/food/snacks/cube/monkey,/turf/open/floor/plasteel/dark,/area/hydroponics) +"bce" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bcf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bcg" = (/obj/structure/table,/obj/item/kitchen/rollingpin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bch" = (/obj/structure/table,/obj/item/storage/box/ingredients/wildcard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bck" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcm" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bco" = (/obj/structure/table/wood/fancy,/obj/item/gun/ballistic/revolver/russian{pixel_y = 16},/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bcq" = (/obj/item/clothing/glasses/monocle,/obj/item/instrument/recorder,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"bcr" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/wood/normal{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcs" = (/obj/item/clothing/shoes/sandal,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bct" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bcx" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"bcy" = (/obj/item/chair,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) +"bcz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bcA" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/item/storage/belt/fannypack/yellow,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bcB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bcC" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bcD" = (/obj/structure/closet/wardrobe/miner,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bcE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bcF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bcG" = (/obj/structure/closet/emcloset,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bcH" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bcI" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bcJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bcK" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bcL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bcN" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/bridge) +"bcO" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/space,/area/space/nearstation) +"bcQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/solar/starboard) +"bcR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space,/area/solar/starboard) +"bcS" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) +"bcT" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/starboard) +"bcU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space,/area/solar/starboard) +"bcV" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) +"bcX" = (/turf/open/floor/plating,/area/hallway/secondary/entry) +"bcY" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bcZ" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bda" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdc" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"bdd" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bde" = (/obj/machinery/flasher{id = "brigentry"; pixel_x = -28; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/janitor) +"bdh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/janitor) +"bdi" = (/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/light_switch{dir = 9; pixel_x = 22},/turf/open/floor/plasteel,/area/janitor) +"bdj" = (/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) +"bdk" = (/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bdl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bdm" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics) +"bdn" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdo" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdp" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bdq" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/grown/tomato,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bdr" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/enzyme{pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bdv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bdw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bdx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bdy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bdz" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) +"bdB" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bdC" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bdD" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bdE" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bdF" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 8; name = "Quartermaster APC"; pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bdG" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bdH" = (/obj/machinery/computer/bounty{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bdI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningdock) +"bdJ" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/pen,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bdK" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/shaft_miner,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bdL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bdM" = (/obj/machinery/requests_console{department = "Mining"; pixel_x = 32},/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bdQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) +"bdR" = (/obj/structure/chair/stool,/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bdS" = (/obj/machinery/power/solar_control{dir = 8; id = "starboardsolar"; name = "Starboard Solar Control"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/starboard) +"bdU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/starboard) +"bdV" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bdW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdX" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bdZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bea" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"beb" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bec" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) +"bed" = (/obj/structure/table,/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel,/area/janitor) +"bee" = (/obj/structure/table,/obj/item/storage/box/lights/mixed{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/mousetraps,/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/clothing/head/crown,/turf/open/floor/plasteel,/area/janitor) +"bef" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"beg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"beh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bei" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"bej" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"bek" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"bel" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bem" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) +"ben" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"beo" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/public/glass{name = "Kitchen"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) +"bep" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 20},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"beq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ber" = (/obj/effect/landmark/start/cook,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bes" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"beu" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bex" = (/obj/machinery/camera{c_tag = "Bar Port"; dir = 1},/obj/machinery/light{light_color = "#c9d3e8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bey" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bez" = (/obj/structure/table/wood,/obj/item/instrument/trombone,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beA" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/light{light_color = "#c9d3e8"},/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = -28; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beC" = (/obj/structure/chair/wood/normal{dir = 4},/obj/machinery/light{light_color = "#c9d3e8"},/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = -28; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beD" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/kitchen/fork,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beE" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beF" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Bar Starboard"; dir = 1},/obj/machinery/light{light_color = "#c9d3e8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"beI" = (/turf/closed/wall,/area/science/robotics/mechbay) +"beJ" = (/obj/structure/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/keycard_auth{pixel_x = -23},/turf/open/floor/plasteel,/area/quartermaster/qm) +"beK" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/quartermaster,/turf/open/floor/plasteel,/area/quartermaster/qm) +"beL" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"beM" = (/obj/machinery/mineral/equipment_vendor,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"beN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/shaft_miner,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"beO" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"beP" = (/obj/machinery/computer/shuttle/mining{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"beR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"beS" = (/obj/item/caution,/turf/open/floor/plating,/area/maintenance/department/cargo) +"beU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard) +"beY" = (/obj/machinery/camera{c_tag = "Arrivals Central"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"beZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfa" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) +"bfb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfc" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bff" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/directions/evac{dir = 8; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) +"bfj" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bfk" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bfl" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) +"bfm" = (/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) +"bfn" = (/obj/structure/reagent_dispensers/watertank/high,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) +"bfo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfp" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/button/door{id = "kitchenwindowshutters"; name = "Kitchen Window Shutters Control"; pixel_x = -26; pixel_y = 5; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bfr" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) +"bfs" = (/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bft" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bfu" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bfv" = (/obj/structure/table,/obj/item/crowbar/large,/obj/machinery/airalarm{pixel_y = 22},/obj/item/clothing/head/welding,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfw" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/obj/machinery/power/apc{dir = 1; name = "Mech Bay APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfx" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfy" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/status_display/evac{pixel_y = 30},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfz" = (/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfA" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bfB" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/computer/card/minor/qm{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bfC" = (/obj/structure/table,/obj/item/clipboard,/obj/machinery/light,/obj/machinery/camera{c_tag = "Cargo Quartermaster's Office"; dir = 1},/obj/machinery/light_switch{pixel_y = -24},/obj/item/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/cartridge/quartermaster,/obj/item/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/coin/silver,/obj/item/stamp/qm,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bfD" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/machinery/computer/security/qm{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bfE" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/pickaxe{pixel_x = 5},/obj/item/shovel{pixel_x = -5},/obj/machinery/camera{c_tag = "Cargo Mining Dock"; dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bfF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/shaft_miner,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bfG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bfH" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bfI" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningdock) +"bfJ" = (/turf/open/floor/plating,/area/quartermaster/miningdock) +"bfK" = (/obj/docking_port/stationary{dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; roundstart_template = /datum/map_template/shuttle/mining/delta; width = 7},/turf/open/space/basic,/area/space) +"bfM" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bfN" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/paperplane,/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bfP" = (/obj/machinery/shieldwallgen,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bfY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bfZ" = (/turf/closed/wall/r_wall,/area/crew_quarters/lounge) +"bga" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/lounge) +"bgb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Lounge"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"bgc" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/lounge) +"bgd" = (/turf/closed/wall,/area/crew_quarters/lounge) +"bge" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 40},/obj/structure/sign/directions/science{dir = 4; pixel_x = 32; pixel_y = 32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgh" = (/obj/structure/chair{name = "Throne of Custodia"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgi" = (/obj/machinery/vending/cola,/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/hydroponics) +"bgk" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) +"bgl" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) +"bgn" = (/obj/structure/chair{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgo" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/storage/fancy/rollingpapers,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgp" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgq" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgr" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgs" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/donut,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bgu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bgv" = (/obj/item/kirbyplants{icon_state = "plant-14"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgw" = (/obj/structure/chair,/obj/item/clothing/head/bowler,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgx" = (/obj/machinery/firealarm{pixel_y = 27},/obj/structure/chair,/obj/item/clothing/mask/cigarette,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgy" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgz" = (/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = 40},/obj/structure/sign/directions/medical{dir = 8; pixel_x = -32; pixel_y = 32},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgB" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgC" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgD" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bgE" = (/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/robot_debris{icon_state = "gib3"},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bgF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bgG" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bgH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bgI" = (/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bgJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bgK" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "Mining Dock APC"; pixel_x = -24},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bgL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bgM" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bgS" = (/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 13; id = "arrivals_stationary"; name = "pubby arrivals"; roundstart_template = /datum/map_template/shuttle/arrival/pubby; width = 6},/turf/open/space/basic,/area/space) +"bgU" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgV" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/button/door{id = "loungeshutters"; name = "Privacy Shutters"; pixel_y = 25},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bgZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bha" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhc" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = 38},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bar1"; location = "Robo"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhj" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhl" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhn" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/circuit,/area/science/robotics/mechbay) +"bho" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/circuit,/area/science/robotics/mechbay) +"bhp" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance"; req_access_txt = "29"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhr" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance"; req_access_txt = "48"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhs" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bht" = (/obj/structure/closet/secure_closet/miner,/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bhu" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/light,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bhv" = (/obj/structure/closet/secure_closet/miner,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) +"bhz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bhE" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bhF" = (/obj/structure/chair/comfy/beige{dir = 4},/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bhG" = (/turf/open/floor/carpet,/area/crew_quarters/lounge) +"bhH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/lounge) +"bhI" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/machinery/camera{c_tag = "Lounge"; dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bhJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = -1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhL" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigS1"; location = "Lounge"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lounge"; location = "Kitchen"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/plaque{icon_state = "L7"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhP" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhQ" = (/obj/machinery/light{dir = 4},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = 25; req_access_txt = "29"},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhR" = (/obj/machinery/light{dir = 8},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = -25; req_access_txt = "29"},/obj/machinery/camera{c_tag = "Mech Bay"; dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bhU" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bhV" = (/obj/machinery/computer/mech_bay_power_console{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bib" = (/obj/structure/chair/comfy/beige{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bic" = (/obj/effect/landmark/start/assistant,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet,/area/crew_quarters/lounge) +"bid" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/lounge) +"bie" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"bif" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair{dir = 4},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"big" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bih" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bii" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/medbay/alt{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bij" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bik" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bil" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bim" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bin" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Central Primary Hallway Hydroponics"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bio" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/plaque{icon_state = "L8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bip" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"biq" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bir" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Robotics"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bis" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bit" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"biu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"biv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"biw" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bix" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/robot_debris{icon_state = "gib3"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/shard{icon_state = "small"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"biF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"biI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"biJ" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/lounge) +"biK" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"biL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"biM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"biN" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge"; name = "Lounge APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) +"biO" = (/obj/structure/table/glass,/obj/item/healthanalyzer{layer = 3.1},/obj/item/pen{layer = 3.2},/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biP" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/departments/examroom{pixel_y = -32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biR" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Central Primary Hallway Genetics"; dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biS" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biT" = (/obj/structure/closet/firecloset,/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Port Emergency Storage"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/storage/emergency/port) +"biX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/storage/emergency/port) +"biY" = (/turf/closed/wall,/area/medical/morgue) +"biZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/grunge{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bja" = (/turf/closed/wall,/area/security/checkpoint/medical) +"bjb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/checkpoint/medical) +"bjc" = (/turf/closed/wall,/area/medical/medbay/central) +"bjd" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/medbay/central) +"bje" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/medical/medbay/central) +"bjf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bjg" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bjh" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bji" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjj" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjk" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Bar"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjl" = (/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjm" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjn" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bjr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bju" = (/turf/open/floor/plasteel,/area/science/robotics/mechbay) +"bjv" = (/obj/structure/closet,/obj/item/weldingtool,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjw" = (/turf/closed/wall/r_wall,/area/science/explab) +"bjx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjB" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"bjD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bjI" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/crew_quarters/lounge) +"bjJ" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/crew_quarters/lounge) +"bjK" = (/obj/structure/bookcase/random/religion,/turf/open/floor/wood,/area/crew_quarters/lounge) +"bjL" = (/turf/closed/wall,/area/storage/emergency/port) +"bjN" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/emergency/port) +"bjP" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency/port) +"bjQ" = (/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bjR" = (/obj/structure/plasticflaps/opaque,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/port) +"bjS" = (/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjW" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/power/apc{dir = 1; name = "Morgue APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bjX" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bjY" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bjZ" = (/obj/machinery/computer/secure_data,/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bka" = (/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bkb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) +"bkc" = (/obj/structure/table,/obj/item/storage/firstaid/regular,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkd" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bke" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkh" = (/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bki" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bkm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bkn" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci3"; location = "Sci2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bko" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bkp" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bkq" = (/obj/structure/table,/obj/item/gps{gpstag = "RD0"},/obj/item/assembly/igniter{pixel_x = -4; pixel_y = -4},/obj/item/clothing/head/welding,/obj/item/screwdriver{pixel_y = 16},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bkr" = (/obj/machinery/modular_computer/console/preset/civilian,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bks" = (/obj/structure/table,/obj/item/wrench,/obj/item/stack/cable_coil,/obj/item/electronics/apc,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bkt" = (/turf/closed/wall/r_wall,/area/science/robotics/lab) +"bku" = (/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/robotics/lab) +"bkv" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/item/paper_bin,/obj/item/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) +"bkw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bkx" = (/turf/closed/wall/r_wall,/area/science/server) +"bky" = (/turf/open/floor/engine,/area/science/explab) +"bkz" = (/obj/machinery/camera{c_tag = "Experimentation Lab Chamber"; network = list("ss13","rd")},/turf/open/floor/engine,/area/science/explab) +"bkA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/explab) +"bkB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/engine,/area/science/explab) +"bkD" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/explab) +"bkF" = (/turf/closed/wall/r_wall,/area/science/xenobiology) +"bkH" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{glass = 1; name = "Slime Euthanization Chamber"; opacity = 0; req_access_txt = "55"},/turf/open/floor/plating,/area/science/xenobiology) +"bkP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space,/area/solar/starboard) +"bkQ" = (/obj/machinery/vending/snack,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkR" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkS" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bkW" = (/obj/item/hemostat,/obj/item/retractor,/obj/item/cautery,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bkX" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bkY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bkZ" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Genetics Cloning Foyer"; network = list("ss13","medbay")},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/power/apc{dir = 1; name = "Port Emergency Storage APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bla" = (/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"blb" = (/turf/open/floor/plating,/area/storage/emergency/port) +"blc" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/port) +"bld" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"ble" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"blf" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"blg" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"blh" = (/obj/machinery/light{dir = 8},/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bli" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"blj" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/depsec/medical,/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"blk" = (/obj/structure/table,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bll" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bln" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 26; pixel_y = 28},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blq" = (/obj/structure/table,/obj/item/storage/box/bodybags{pixel_x = 3; pixel_y = 2},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"blr" = (/obj/structure/table,/obj/item/folder/white,/obj/item/healthanalyzer,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bls" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blt" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blv" = (/obj/structure/table,/obj/item/paicard,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blw" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blx" = (/obj/machinery/light{dir = 1},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -26; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blC" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"blE" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"blF" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/roboticist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blG" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blH" = (/obj/machinery/camera{c_tag = "Robotics Lab"; network = list("ss13","rd")},/obj/structure/sink/kitchen{name = "utility sink"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blI" = (/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30; receive_ore_updates = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel,/area/science/robotics/lab) +"blJ" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 2; sortType = 14},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Robotics Lab APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"blL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"blM" = (/obj/machinery/rnd/server,/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/circuit/telecomms/server,/area/science/server) +"blN" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/plasteel/dark/telecomms,/area/science/server) +"blP" = (/obj/effect/landmark/event_spawn,/obj/item/beacon,/obj/machinery/light{dir = 8},/turf/open/floor/engine,/area/science/explab) +"blQ" = (/obj/machinery/rnd/experimentor,/turf/open/floor/engine,/area/science/explab) +"blR" = (/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/explab) +"blS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/book/manual/wiki/experimentor,/turf/open/floor/engine,/area/science/explab) +"blT" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/wirer,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"blU" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/integrated_electronics/debugger,/obj/machinery/computer/security/telescreen/circuitry{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"blV" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/stack/sheet/metal/ten,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"blW" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/wirer,/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen/circuitry{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"blX" = (/turf/open/floor/engine,/area/science/xenobiology) +"blZ" = (/obj/machinery/computer/camera_advanced/xenobio,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bmc" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bmd" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bme" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bmf" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bmg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Genetics Maintenance"; req_one_access_txt = "12;45;5;9"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bmh" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bmi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bmj" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bmk" = (/obj/structure/table,/obj/item/crowbar,/obj/item/storage/toolbox/emergency,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bml" = (/obj/structure/girder,/turf/open/floor/plating,/area/storage/emergency/port) +"bmn" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/storage/emergency/port) +"bmp" = (/obj/structure/bodycontainer/morgue,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bmq" = (/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bmr" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/camera{c_tag = "Morgue"; dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bms" = (/obj/machinery/power/apc{areastring = "/area/security/checkpoint/medical"; dir = 8; name = "Medbay Security APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Medbay Security Post"; dir = 4; network = list("ss13","medbay")},/obj/structure/closet/secure_closet/security/med,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bmt" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bmu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bmv" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bmw" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bmx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bmy" = (/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Kitchen"; location = "Med"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bmz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bmA" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bmB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmC" = (/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmH" = (/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci2"; location = "Sci"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bmL" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bmM" = (/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmN" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmO" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bmR" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20; pixel_x = 3; pixel_y = -4},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bmS" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 4; external_pressure_bound = 120; name = "server vent"},/turf/open/floor/circuit/telecomms/server,/area/science/server) +"bmT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/dark/telecomms,/area/science/server) +"bmU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8; external_pressure_bound = 140; name = "server vent"; pressure_checks = 0},/turf/open/floor/circuit/telecomms/server,/area/science/server) +"bmV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/engine,/area/science/explab) +"bmW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/engine,/area/science/explab) +"bmX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/engine,/area/science/explab) +"bmY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/engine,/area/science/explab) +"bmZ" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/machinery/magnetic_controller{autolink = 1; pixel_x = -28; pixel_y = 3},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bna" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/turf_decal/box/red,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bnb" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bnc" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/engine,/area/science/explab) +"bnd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/xenobiology) +"bnh" = (/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/xenobiology) +"bni" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/xenobiology) +"bnj" = (/turf/closed/wall,/area/science/xenobiology) +"bnl" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bnn" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) +"bno" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnq" = (/obj/item/beacon,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bns" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnt" = (/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bnu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bnv" = (/turf/closed/wall,/area/medical/genetics) +"bnw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Cloning"; req_one_access_txt = "5;9"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"bnx" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/table,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/clothing/neck/stethoscope,/obj/item/clothing/mask/surgical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bny" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/item/kirbyplants{icon_state = "plant-11"},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bnz" = (/obj/structure/table,/obj/item/folder/white,/obj/item/clothing/gloves/color/latex,/obj/item/storage/fancy/candle_box,/obj/machinery/light_switch{pixel_x = 22},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bnA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/medical) +"bnB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Medbay Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) +"bnC" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnD" = (/obj/structure/table/reinforced,/obj/item/paper_bin{pixel_x = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bnI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bnL" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bnM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bnN" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bnO" = (/obj/machinery/rnd/production/circuit_imprinter,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bnP" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bnQ" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bnR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bnS" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bnT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/science/server) +"bnU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Server Room"; req_access_txt = "30"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/science/server) +"bnV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/engine,/area/science/explab) +"bnW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/science/explab) +"bnX" = (/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/science/explab) +"bnY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/science/explab) +"bnZ" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"boa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/science/explab) +"boc" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/engine,/area/science/explab) +"bod" = (/turf/closed/wall,/area/science/explab) +"boe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/science/explab) +"bof" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/trinary/filter,/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/science/explab) +"bog" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/engine,/area/science/explab) +"boh" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/science/explab) +"bok" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) +"bom" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"bon" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) +"boo" = (/obj/machinery/camera{c_tag = "Arrivals Port Aft"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) +"bop" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"boq" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bor" = (/obj/structure/flora/grass/jungle,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/medical/genetics) +"bos" = (/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/medical/genetics) +"bot" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/medical/genetics) +"bou" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/genetics) +"bov" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bow" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"box" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"boy" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"boz" = (/obj/machinery/vending/clothing,/obj/machinery/firealarm{pixel_y = 27},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"boA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"boC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"boD" = (/obj/item/ectoplasm,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"boE" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boH" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boI" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/medical_doctor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boJ" = (/obj/structure/table/reinforced,/obj/item/folder/white,/obj/item/pen,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boL" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boM" = (/obj/structure/bed/roller,/obj/machinery/camera{c_tag = "Medbay Entrance"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boN" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boO" = (/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"boP" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boQ" = (/obj/structure/closet/firecloset/full,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boR" = (/obj/structure/table,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boS" = (/obj/structure/chair,/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boT" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boU" = (/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/machinery/camera{c_tag = "Research Division Lobby"; dir = 1},/obj/machinery/light,/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"boX" = (/obj/machinery/computer/rdconsole/robotics{dir = 4},/obj/machinery/button/door{id = "robotics"; name = "Shutters Control Button"; pixel_x = -26; pixel_y = 4; req_access_txt = "29"},/obj/machinery/light_switch{pixel_x = -25; pixel_y = -6},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"boZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bpa" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/science/server) +"bpb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/dark,/area/science/server) +"bpc" = (/obj/machinery/computer/rdservercontrol{dir = 8},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/camera{c_tag = "Server Room"; network = list("ss13","rd"); pixel_x = 22},/turf/open/floor/plasteel/dark,/area/science/server) +"bpd" = (/obj/machinery/button/door{id = "testlab"; name = "Window Blast Doors"; pixel_x = -6},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "telelab"; name = "Test Chamber Blast Door"; pixel_x = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bpe" = (/obj/machinery/computer/rdconsole/experiment,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bpf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/explab) +"bpg" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bph" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/machinery/camera{c_tag = "Experimentation Lab Central"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bpi" = (/obj/structure/closet/crate,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bpn" = (/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bpo" = (/obj/item/wrench,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/engine,/area/science/explab) +"bpp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/engine,/area/science/explab) +"bpq" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bpr" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/engine,/area/science/xenobiology) +"bpt" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bpu" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bpv" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/medical/genetics) +"bpw" = (/obj/structure/flora/grass/jungle,/obj/item/reagent_containers/food/snacks/grown/banana,/turf/open/floor/grass,/area/medical/genetics) +"bpx" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/grassybush,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/pointybush,/obj/structure/flora/junglebush,/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/medical/genetics) +"bpy" = (/obj/machinery/clonepod,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = -30},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) +"bpz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bpA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bpB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bpC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/genetics) +"bpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bpE" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bpF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bpG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Morgue"; req_access_txt = "6"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpK" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpL" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bpM" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/grunge{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) +"bpN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpO" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medbay Reception"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpR" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpS" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bpV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/turf/open/floor/plating,/area/medical/chemistry) +"bpW" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 2; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/item/folder/white,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bpX" = (/obj/machinery/smartfridge/chemistry/preloaded,/turf/closed/wall,/area/medical/chemistry) +"bpY" = (/turf/closed/wall,/area/medical/chemistry) +"bqb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/turf/open/floor/plating,/area/science/lab) +"bqc" = (/obj/structure/table/reinforced,/obj/item/pen{layer = 3.1},/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 2; name = "Research and Development Desk"; req_one_access_txt = "7;29"},/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/obj/item/folder/white,/turf/open/floor/plating,/area/science/lab) +"bqd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqe" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqg" = (/obj/structure/table,/obj/item/book/manual/wiki/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/storage/belt/utility,/obj/item/reagent_containers/glass/beaker/large,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/item/radio/headset/headset_sci{pixel_x = -3},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bqh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bqi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bqj" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bqk" = (/obj/machinery/aug_manipulator,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bql" = (/obj/machinery/power/apc{dir = 8; name = "Server Room APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/science/server) +"bqm" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/server) +"bqn" = (/obj/structure/table,/obj/item/folder/white,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/science/server) +"bqo" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"bqp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/chair/stool,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqq" = (/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqs" = (/turf/open/floor/plasteel/white,/area/science/explab) +"bqt" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqv" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqx" = (/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/rack,/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bqA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bqC" = (/obj/machinery/monkey_recycler,/obj/structure/window/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/science/xenobiology) +"bqE" = (/obj/structure/table,/obj/structure/window/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bqF" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 1},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bqG" = (/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bqH" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #5"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bqI" = (/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bqJ" = (/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bqK" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #6"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bqL" = (/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bqO" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/department/cargo) +"bqS" = (/obj/machinery/power/apc{areastring = "/area/hallway/secondary/entry"; dir = 4; name = "Arrivals APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bqT" = (/obj/structure/flora/grass/jungle/b,/obj/structure/flora/ausbushes/ppflowers,/obj/item/reagent_containers/food/snacks/grown/banana,/obj/machinery/camera{c_tag = "Genetics Monkey Pen Fore"; dir = 4; network = list("ss13","medbay")},/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/medical/genetics) +"bqU" = (/obj/structure/sink/puddle,/obj/structure/flora/ausbushes/reedbush{pixel_y = 6},/turf/open/floor/grass,/area/medical/genetics) +"bqV" = (/obj/structure/flora/grass/jungle/b,/obj/machinery/light/small{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"bqW" = (/obj/machinery/computer/cloning{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) +"bqX" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bqY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 23},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bqZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bra" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{id_tag = "GeneticsDoor"; name = "Cloning"; req_one_access_txt = "5;9"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mapping_helpers/airlock/unres{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"brb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"brc" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"brd" = (/obj/machinery/power/apc{dir = 4; name = "Medbay APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bre" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Medbay APC"; pixel_x = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"brf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"brg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"brh" = (/obj/machinery/computer/med_data{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bri" = (/obj/machinery/computer/crew{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"brj" = (/obj/machinery/chem_master,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"brk" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"brl" = (/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"brm" = (/obj/machinery/chem_master,/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = 32; receive_ore_updates = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"brq" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/item/stack/cable_coil/orange,/obj/item/storage/toolbox/mechanical,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"brr" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"brs" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"brt" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bru" = (/obj/machinery/holopad,/obj/machinery/light_switch{pixel_x = 25},/obj/item/reagent_containers/glass/bucket,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"brv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"brw" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"brx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bry" = (/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus{pixel_x = 5; pixel_y = -5},/obj/item/crowbar,/obj/structure/table,/turf/open/floor/plasteel,/area/science/robotics/lab) +"brz" = (/obj/item/circular_saw,/obj/item/scalpel{pixel_y = 12},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/item/razor{pixel_y = 5},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"brA" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/bot_assembly/cleanbot,/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"brB" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"brC" = (/obj/item/clothing/gloves/color/latex,/obj/item/surgical_drapes,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"brD" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/science/server) +"brE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/science/server) +"brF" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/science/server) +"brG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/light_switch{pixel_x = -25},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"brH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/explab) +"brJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"brK" = (/obj/structure/table/reinforced,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/white,/area/science/explab) +"brL" = (/obj/machinery/bookbinder,/turf/open/floor/plasteel/white,/area/science/explab) +"brM" = (/obj/machinery/libraryscanner,/turf/open/floor/plasteel/white,/area/science/explab) +"brO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"brR" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/science/xenobiology) +"brT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/closet/l3closet,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"brU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/sign/departments/xenobio{pixel_x = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"brV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/xenobiology) +"brW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"brX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bsa" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/xenobiology) +"bsb" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #5"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) +"bsc" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio5"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) +"bsd" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #6"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) +"bse" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) +"bsf" = (/obj/machinery/camera{c_tag = "Xenobiology Starboard"; network = list("ss13","rd")},/obj/structure/sign/departments/xenobio{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bsl" = (/obj/structure/sign/warning/vacuum/external,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) +"bsm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Arrivals Starboard Aft"; dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bsn" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/engine) +"bso" = (/obj/structure/flora/junglebush,/obj/structure/flora/grass/jungle/b,/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/medical/genetics) +"bsp" = (/obj/item/toy/beach_ball,/turf/open/floor/grass,/area/medical/genetics) +"bsq" = (/obj/structure/flora/grass/jungle/b,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/medical/genetics) +"bsr" = (/obj/machinery/dna_scannernew,/obj/machinery/camera{c_tag = "Genetics Cloning"; dir = 4; network = list("ss13","medbay")},/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) +"bss" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bst" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bsu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bsv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bsw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/genetics) +"bsx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bsy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bsz" = (/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bsA" = (/turf/closed/wall,/area/medical/sleeper) +"bsB" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bsC" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bsD" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bsE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bsF" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bsG" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bsH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{id_tag = "medbaybolts"; name = "Medbay"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bsI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{id_tag = "medbaybolts"; name = "Medbay"},/obj/effect/turf_decal/tile/blue,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bsJ" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/structure/sign/poster/official/safety_eye_protection{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsK" = (/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsL" = (/obj/item/storage/box/beakers,/obj/structure/table,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsN" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bsR" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/lab) +"bsS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/lab) +"bsT" = (/obj/machinery/power/apc{dir = 4; name = "Research Lab APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/white,/area/science/lab) +"bsU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bsV" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bsW" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bsX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bsY" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bsZ" = (/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/healthanalyzer,/obj/item/healthanalyzer,/obj/item/healthanalyzer,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bta" = (/obj/item/retractor,/obj/item/hemostat,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"btb" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/machinery/camera{c_tag = "Robotics - Aft"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"btc" = (/obj/machinery/computer/operating{dir = 8; name = "Robotics Operating Computer"},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"btd" = (/obj/item/mmi,/obj/item/mmi,/obj/item/mmi,/obj/structure/table,/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"bte" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/science/server) +"btf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room"; req_access_txt = "30"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/dark,/area/science/server) +"btg" = (/obj/structure/rack,/obj/item/crowbar,/obj/item/wrench,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/multitool,/obj/item/multitool,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"bth" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"bti" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/explab) +"btk" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"btl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"btp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"bts" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"btt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btA" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/landmark/xeno_spawn,/obj/structure/sign/departments/xenobio{pixel_x = -32},/turf/open/floor/plasteel,/area/science/xenobiology) +"btB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) +"btE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"btF" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/blobstart,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) +"btK" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 13; id = "ferry_home"; name = "port bay 2"; width = 5},/turf/open/space/basic,/area/space) +"btL" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"btM" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/turf/open/floor/plating,/area/hallway/secondary/entry) +"btN" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"btO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"btP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"btQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"btR" = (/obj/structure/flora/ausbushes/brflowers,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"btS" = (/turf/open/floor/grass,/area/medical/genetics) +"btT" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/sunnybush,/obj/item/reagent_containers/food/snacks/grown/banana,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"btU" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btX" = (/obj/structure/table,/obj/item/book/manual/wiki/medical_cloning{pixel_y = 6},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btY" = (/obj/structure/table,/obj/item/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/button/door{desc = "A remote control switch for the genetics doors."; id = "GeneticsDoor"; name = "Genetics Exit Button"; normaldoorcontrol = 1; pixel_x = 24; pixel_y = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"btZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bua" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bub" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"buc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bud" = (/obj/item/wrench/medical,/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bue" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/medical/sleeper) +"buf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bug" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"buh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bui" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"buj" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/machinery/camera{c_tag = "Chemistry"; dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"buk" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bul" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bum" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bun" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bup" = (/obj/machinery/rnd/destructive_analyzer,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) +"buq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/lab) +"bur" = (/obj/effect/turf_decal/delivery,/obj/machinery/rnd/production/protolathe/department/science,/turf/open/floor/plasteel,/area/science/lab) +"bus" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Research and Development Lab"; dir = 8; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"but" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"buu" = (/obj/structure/chair{dir = 8},/obj/item/clothing/mask/cigarette,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"buv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/science/robotics/lab) +"buw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) +"buy" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"buz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/explab) +"buA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buB" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"buC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/explab) +"buD" = (/obj/item/kirbyplants{icon_state = "plant-11"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buG" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buH" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"buI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buK" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"buL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"buW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bva" = (/turf/closed/wall,/area/maintenance/department/engine) +"bvb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bvc" = (/turf/closed/wall/r_wall,/area/medical/genetics) +"bvd" = (/obj/machinery/door/airlock/research/glass{name = "Genetics"; req_access_txt = "9"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bve" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/genetics) +"bvf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Medbay Port Hallway"; dir = 4; network = list("ss13","medbay")},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bvg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bvh" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bvi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bvj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bvk" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bvl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvm" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvo" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bvq" = (/obj/machinery/door/airlock/medical/glass{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bvr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bvs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bvt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bvu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvw" = (/obj/machinery/computer/rdconsole/core{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) +"bvx" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/lab) +"bvy" = (/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/effect/turf_decal/delivery,/obj/machinery/rnd/production/circuit_imprinter/department/science,/turf/open/floor/plasteel,/area/science/lab) +"bvz" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/lab) +"bvA" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/newscaster{pixel_y = 34},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster/random{pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvE" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvF" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bvG" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bvH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/explab) +"bvI" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Science Access Airlock"; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/explab) +"bvJ" = (/obj/structure/closet/firecloset/full,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/explab) +"bvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/science/explab) +"bvL" = (/obj/machinery/power/apc/highcap/ten_k{dir = 1; name = "Research Division APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvT" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvU" = (/obj/machinery/recharger,/obj/structure/table,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvV" = (/turf/open/floor/plasteel,/area/science/explab) +"bvW" = (/obj/machinery/magnetic_module,/obj/effect/landmark/blobstart,/obj/structure/target_stake,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bvY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"bvZ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/dark,/area/science/explab) +"bwa" = (/turf/open/floor/plasteel/dark,/area/science/explab) +"bwb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/explab) +"bwc" = (/obj/machinery/chem_master,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/dark,/area/science/explab) +"bwe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bwf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bwh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bwm" = (/turf/closed/wall,/area/maintenance/department/science) +"bwn" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) +"bws" = (/obj/structure/closet,/obj/item/stack/cable_coil/random,/obj/item/electronics/airalarm,/turf/open/floor/plating,/area/maintenance/department/engine) +"bwt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bwu" = (/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"bwv" = (/obj/structure/table,/obj/item/folder/white,/obj/item/pen,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bww" = (/obj/machinery/computer/scan_consolenew,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bwx" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bwy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bwz" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bwA" = (/obj/structure/table,/obj/item/storage/box/rxglasses{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/bodybags,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bwB" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/table/glass,/obj/item/storage/box/gloves{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/masks,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bwC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bwD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bwE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) +"bwF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/bloodbankgen,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bwG" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bwH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bwI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bwK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/roller,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bwS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bwT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bwU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bwV" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bwW" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bxa" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/research_and_development,/obj/item/disk/tech_disk,/obj/item/disk/design_disk,/turf/open/floor/plasteel/dark,/area/science/lab) +"bxc" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/lab) +"bxd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 13},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bxe" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 12},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/lab) +"bxf" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) +"bxg" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bxh" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "R&D Lab"; req_one_access_txt = "7;29;30"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) +"bxi" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci9"; location = "Sci8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxk" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxl" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci8"; location = "Sci7"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxn" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxo" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bxp" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bxq" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxu" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxv" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/explab) +"bxw" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/science/explab) +"bxz" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxC" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxD" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bxG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/explab) +"bxH" = (/obj/effect/turf_decal/box/corners,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxJ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/chem_heater,/turf/open/floor/plasteel/dark,/area/science/explab) +"bxK" = (/obj/structure/chair/stool,/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/dark,/area/science/explab) +"bxL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/dark,/area/science/explab) +"bxM" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxN" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #1"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxO" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxP" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/science) +"bxQ" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #2"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxR" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxS" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #3"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxT" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) +"bxY" = (/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bxZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bya" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"byb" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plating,/area/maintenance/department/engine) +"byc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"byd" = (/obj/structure/flora/junglebush/c,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) +"bye" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/grass,/area/medical/genetics) +"byf" = (/obj/structure/table,/obj/item/storage/box/disks,/obj/item/flashlight/pen,/obj/item/flashlight/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byg" = (/obj/structure/chair/stool,/obj/effect/landmark/start/geneticist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) +"byk" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/storage/box/monkeycubes,/obj/machinery/light{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"byl" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bym" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"byn" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"byo" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/sleeper) +"byp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"byr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bys" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"byt" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"byu" = (/turf/closed/wall,/area/crew_quarters/heads/cmo) +"byv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoshutters"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"byw" = (/obj/structure/closet/secure_closet/chemical,/obj/machinery/power/apc{dir = 8; name = "Chemistry APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/headset/headset_med,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"byx" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"byz" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/door/window/eastright{dir = 1; name = "Chemistry Testing"; req_access_txt = "5; 33"},/obj/effect/turf_decal/stripes/line{dir = 9},/mob/living/simple_animal/mouse/white{name = "Labrette"},/turf/open/floor/engine,/area/medical/chemistry) +"byA" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/medical/chemistry) +"byC" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/airlock/research{name = "R&D Lab"; req_one_access_txt = "7;29;30"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/science/lab) +"byE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/lab) +"byF" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"byG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"byH" = (/obj/structure/table,/obj/item/multitool,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"byI" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"byJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci5"; location = "Sci4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"byO" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/stripes/line,/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"byP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/explab) +"byQ" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/explab) +"byR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/shower{dir = 8; name = "emergency shower"; pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"byS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/science/explab) +"byT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/kirbyplants/photosynthetic{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byU" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byV" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byW" = (/obj/structure/chair/comfy{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byX" = (/obj/machinery/camera{c_tag = "Research Division Secure Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"byZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bza" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark,/area/science/explab) +"bzb" = (/obj/structure/closet/radiation,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bzc" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bzd" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/explab) +"bze" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/explab) +"bzg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bzh" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Experimentation Lab"; dir = 1; network = list("ss13","rd")},/obj/item/storage/toolbox/electrical{pixel_x = -4; pixel_y = 5},/obj/item/storage/toolbox/mechanical,/turf/open/floor/plasteel/dark,/area/science/explab) +"bzi" = (/obj/structure/table,/obj/item/electropack,/obj/item/taperecorder,/obj/item/screwdriver,/turf/open/floor/plasteel/dark,/area/science/explab) +"bzj" = (/obj/structure/table,/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/dark,/area/science/explab) +"bzk" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bzl" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #1"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bzm" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/engine,/area/science/xenobiology) +"bzn" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bzp" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bzq" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) +"bzr" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #3"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"bzs" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/engine,/area/science/xenobiology) +"bzy" = (/obj/structure/grille,/turf/open/space,/area/space/nearstation) +"bzz" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bzA" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bzB" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; dir = 8; name = "Monastery Monitor"; network = list("monastery"); pixel_x = 28},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) +"bzC" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bzD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bzE" = (/obj/structure/flora/grass/jungle/b,/obj/machinery/camera{c_tag = "Genetics Monkey Pen Aft"; dir = 4; network = list("ss13","medbay")},/obj/structure/flora/ausbushes/grassybush,/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/medical/genetics) +"bzF" = (/obj/machinery/door/window/eastleft{name = "Monkey Pen"; req_one_access_txt = "9"},/obj/item/reagent_containers/food/snacks/grown/banana,/turf/open/floor/grass,/area/medical/genetics) +"bzG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzH" = (/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bzM" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bzN" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bzO" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"bzP" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bzQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bzR" = (/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bzS" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bzT" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/clothing/neck/stethoscope,/obj/item/clothing/mask/surgical,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bzU" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/medical/sleeper) +"bzV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bzW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bzX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bzY" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/crew_quarters/heads/cmo) +"bzZ" = (/obj/machinery/suit_storage_unit/cmo,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAa" = (/obj/machinery/computer/crew,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAb" = (/obj/machinery/computer/med_data,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAc" = (/obj/machinery/computer/card/minor/cmo,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/keycard_auth{pixel_x = 26},/obj/machinery/button/door{dir = 4; id = "cmoshutters"; name = "Privacy shutters"; pixel_x = 38; req_access_txt = "40"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bAf" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bAg" = (/obj/structure/table/glass,/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/stack/cable_coil/random,/obj/item/book/manual/wiki/chemistry,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/stack/sheet/mineral/plasma{amount = 2; layer = 2.9},/obj/item/screwdriver,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bAi" = (/obj/machinery/smoke_machine,/turf/open/floor/engine,/area/medical/chemistry) +"bAk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/hallway/primary/aft) +"bAo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bAp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Research Director's Office"; req_access_txt = "30"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bAq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bAr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bAt" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/science) +"bAu" = (/turf/closed/wall,/area/security/checkpoint/science) +"bAv" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bAy" = (/turf/closed/wall/r_wall,/area/hallway/primary/aft) +"bAA" = (/turf/closed/wall,/area/science/storage) +"bAB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/science/storage) +"bAC" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bAD" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"bAE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bAF" = (/turf/closed/wall,/area/science/mixing) +"bAG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"bAH" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/engine,/area/science/xenobiology) +"bAI" = (/obj/structure/transit_tube/curved/flipped{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bAJ" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) +"bAK" = (/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/hallway/secondary/entry) +"bAL" = (/obj/structure/transit_tube/station/reverse/flipped,/obj/structure/transit_tube_pod{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/entry) +"bAM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/item/extinguisher,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bAN" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/medical/genetics) +"bAO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small,/turf/open/floor/grass,/area/medical/genetics) +"bAP" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/ausbushes/palebush,/turf/open/floor/grass,/area/medical/genetics) +"bAQ" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/dropper,/obj/item/storage/pill_bottle/mutadone,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAR" = (/obj/structure/chair/stool,/obj/effect/landmark/start/geneticist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAV" = (/obj/machinery/shower{dir = 8},/obj/machinery/requests_console{department = "Genetics"; name = "Genetics Requests Console"; pixel_x = 32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bAW" = (/turf/closed/wall,/area/medical/virology) +"bAX" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; id_tag = "virology_airlock_exterior"; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; req_access_txt = "39"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/white,/area/medical/virology) +"bAY" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/virology) +"bBb" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bBc" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bBd" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bBe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bBf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bBg" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBh" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBi" = (/obj/effect/landmark/start/chief_medical_officer,/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBk" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Chief Medical Office"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/computer/security/telescreen/cmo{dir = 8; pixel_x = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bBl" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Lab Maintenance"; req_access_txt = "5; 33"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bBm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bBo" = (/turf/closed/wall,/area/hallway/primary/aft) +"bBp" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) +"bBq" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/power/apc{dir = 8; name = "RD Office APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBr" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBu" = (/obj/item/kirbyplants/dead,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/button/door{desc = "A switch that controls privacy shutters."; id = "rdprivacy"; name = "Privacy Shutters"; pixel_x = 40; pixel_y = -5; req_access_txt = "30"},/obj/machinery/keycard_auth{pixel_x = 28; pixel_y = 6},/obj/machinery/button/door{id = "rndshutters"; name = "Research Lockdown"; pixel_x = 28; pixel_y = -5; req_access_txt = "47"},/obj/machinery/button/door{id = "research_shutters_2"; name = "RnD Shutters"; pixel_x = 40; pixel_y = 5; req_access_txt = "47"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bBw" = (/obj/machinery/computer/security,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bBx" = (/obj/machinery/computer/security/mining,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bBy" = (/obj/machinery/computer/secure_data,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecomms)"; pixel_x = 28; pixel_y = 24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bBz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bBA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bBB" = (/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bBC" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/storage) +"bBD" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/science/storage) +"bBE" = (/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bBF" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bBG" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/storage) +"bBH" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bBI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"bBJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bBK" = (/obj/structure/closet/bombcloset,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBL" = (/obj/structure/closet/bombcloset,/obj/machinery/airalarm/unlocked{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bBN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) +"bBO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bBP" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBQ" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Toxins Lab APC"; pixel_y = 25},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/camera{c_tag = "Toxins Lab Starboard"; network = list("ss13","rd")},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBT" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bBU" = (/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/science/xenobiology) +"bBV" = (/obj/structure/transit_tube/curved,/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"bBW" = (/turf/open/space,/area/space) +"bBX" = (/turf/closed/wall/r_wall,/area/maintenance/department/engine) +"bBY" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/mesh,/obj/item/stack/medical/suture,/turf/open/floor/plating,/area/maintenance/department/engine) +"bBZ" = (/obj/structure/table,/obj/item/pen,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCa" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCb" = (/obj/machinery/dna_scannernew,/obj/machinery/camera{c_tag = "Genetics"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCc" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCd" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCe" = (/obj/machinery/power/apc{dir = 4; name = "Genetics APC"; pixel_x = 27},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bCf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology) +"bCg" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) +"bCh" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock"; network = list("ss13","medbay")},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bCi" = (/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bCj" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) +"bCl" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bCm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"bCn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bCo" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bCp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bCq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Chief Medical Office"; req_access_txt = "40"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) +"bCr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCs" = (/obj/structure/table/glass,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/pen{layer = 3.1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCt" = (/obj/structure/table/glass,/obj/item/folder/white,/obj/item/clothing/glasses/hud/health,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCu" = (/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/medical/gauze,/obj/item/clothing/neck/stethoscope,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCv" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bCw" = (/obj/machinery/door/airlock/maintenance{name = "CMO Maintenance"; req_access_txt = "40"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCy" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 11},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bCz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCB" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bCD" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bCE" = (/obj/machinery/computer/robotics{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCG" = (/obj/structure/displaycase/labcage,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bCJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bCK" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Science Security Post"; dir = 4; network = list("ss13","rd")},/obj/item/book/manual/wiki/security_space_law,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bCL" = (/obj/effect/landmark/start/depsec/science,/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bCM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bCN" = (/obj/structure/chair/comfy,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bCO" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/aft) +"bCP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/storage) +"bCQ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bCR" = (/turf/open/floor/engine,/area/science/storage) +"bCS" = (/obj/structure/sign/warning/fire,/turf/closed/wall,/area/science/storage) +"bCT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bCU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bCV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/mixing) +"bCW" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) +"bCX" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bCZ" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDa" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDb" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bDc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bDd" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 32; receive_ore_updates = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/wrench,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bDe" = (/obj/machinery/light{light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/xenobiology) +"bDf" = (/obj/structure/transit_tube,/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"bDg" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/department/engine) +"bDh" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/department/engine) +"bDi" = (/turf/open/floor/plating,/area/maintenance/department/engine) +"bDj" = (/obj/item/trash/candy,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bDk" = (/obj/item/chair,/obj/item/cigbutt/roach,/turf/open/floor/plating,/area/maintenance/department/engine) +"bDl" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bDm" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bDn" = (/obj/machinery/vending/wardrobe/gene_wardrobe,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bDo" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bDp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/plaque,/turf/open/floor/plasteel/white,/area/medical/virology) +"bDq" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bDr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/sleeper) +"bDs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bDt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDv" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDw" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDx" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 4; name = "CMO's Office APC"; pixel_x = 26},/obj/structure/cable,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bDy" = (/turf/closed/wall,/area/medical/exam_room) +"bDz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bDA" = (/obj/machinery/vending/cigarette,/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bDB" = (/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/machinery/computer/rdconsole{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDC" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDD" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDE" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/research_director,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDF" = (/obj/machinery/computer/card/minor/rd{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bDG" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bDH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bDI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bDK" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/structure/sign/poster/random{pixel_x = 32},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bDL" = (/obj/structure/sign/warning/nosmoking{pixel_x = -32},/turf/open/floor/engine,/area/science/storage) +"bDM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/science/storage) +"bDN" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) +"bDO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/storage) +"bDP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) +"bDQ" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/turf/open/floor/plasteel/dark,/area/science/storage) +"bDR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bDS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/explab) +"bDT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bDU" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research/glass{name = "Toxins Lab"; req_access_txt = "8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bDV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDW" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) +"bEa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bEb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bEc" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bEd" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bEf" = (/obj/machinery/airalarm{pixel_y = 22},/obj/item/storage/bag/ore,/obj/item/pickaxe,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bEj" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEk" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/obj/machinery/meter,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/engine) +"bEl" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Out"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEm" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEo" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEp" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bEq" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEr" = (/turf/closed/wall/r_wall,/area/medical/virology) +"bEs" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) +"bEt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bEu" = (/obj/structure/closet/l3closet,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bEv" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/rnd/production/techfab/department/medical,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEw" = (/obj/structure/table,/obj/item/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEx" = (/obj/structure/table,/obj/item/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/door/window/southleft{name = "First-Aid Supplies"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEy" = (/obj/structure/table,/obj/item/storage/firstaid/toxin{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/toxin,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/door/window/southright{name = "First-Aid Supplies"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEz" = (/obj/structure/table,/obj/item/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEB" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bED" = (/obj/structure/closet/secure_closet/CMO,/obj/item/valentine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEE" = (/obj/machinery/modular_computer/console/preset/civilian{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEF" = (/obj/item/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/cartridge/medical,/obj/item/cartridge/chemistry{pixel_y = 2},/obj/structure/table,/obj/machinery/light,/obj/item/wrench/medical,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEG" = (/obj/item/folder/blue,/obj/item/stamp/cmo,/obj/structure/table,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEH" = (/obj/item/kirbyplants{icon_state = "plant-16"},/obj/machinery/light_switch{pixel_y = -22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bEI" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/closet,/obj/item/clothing/under/rank/medical/doctor/nurse,/obj/item/clothing/head/nursehat,/obj/effect/decal/cleanable/cobweb,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/sign/poster/official/no_erp{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bEJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/blobstart,/obj/item/melee/baton/cattleprod{preload_cell_type = /obj/item/stock_parts/cell/high},/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bEK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "CMOCell"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_y = 26; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bEL" = (/obj/machinery/door/airlock/command{id_tag = "CMOCell"; name = "Personal Examination Room"; req_access_txt = "40"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bEM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bEN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bEQ" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bER" = (/obj/machinery/computer/mecha{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bES" = (/obj/item/aicard,/obj/item/circuitboard/aicore,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_y = -30; receive_ore_updates = 1},/obj/machinery/light,/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bET" = (/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 5},/obj/item/folder/white,/obj/item/pen,/obj/item/stamp/rd,/obj/machinery/status_display/ai{pixel_y = -32},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("ss13","rd")},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bEU" = (/obj/item/cartridge/signal/toxins,/obj/item/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/structure/table/glass,/obj/machinery/computer/security/telescreen/rd{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bEV" = (/obj/machinery/newscaster{pixel_y = -30},/obj/machinery/modular_computer/console/preset/research{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bEW" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/structure/filingcabinet/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bEX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bEY" = (/obj/machinery/power/apc{dir = 4; name = "Science Security APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-8"},/obj/structure/closet/secure_closet/security/science,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bEZ" = (/obj/structure/chair/comfy{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bFa" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/science/storage) +"bFb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/science/storage) +"bFd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/science/storage) +"bFf" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bFh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) +"bFi" = (/obj/item/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/assembly/prox_sensor{pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/science/mixing) +"bFj" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) +"bFk" = (/obj/structure/table/reinforced,/obj/item/wrench,/obj/item/screwdriver{pixel_y = 10},/obj/item/analyzer,/turf/open/floor/plasteel/white,/area/science/mixing) +"bFl" = (/turf/open/floor/plasteel/white,/area/science/mixing) +"bFm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bFn" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bFp" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bFr" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bFs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bFt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bFu" = (/obj/machinery/button/massdriver{dir = 4; id = "toxinsdriver"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bFx" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"bFy" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/maintenance/department/science) +"bFz" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/department/science) +"bFB" = (/obj/item/newspaper,/turf/open/floor/plating,/area/maintenance/department/science) +"bFC" = (/obj/item/wallframe/camera,/obj/machinery/button/door{id = "PottySci"; name = "Bathroom Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 4; specialfunctions = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"bFD" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/science) +"bFE" = (/obj/docking_port/stationary{dwidth = 2; height = 6; id = "monastery_shuttle_asteroid"; name = "monastery"; width = 5},/turf/open/space,/area/space/nearstation) +"bFF" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"bFG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bFH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) +"bFI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bFJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bFK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bFL" = (/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bFM" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; id_tag = "virology_airlock_interior"; name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) +"bFN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/medical/virology) +"bFO" = (/turf/closed/wall/r_wall,/area/medical/medbay/central) +"bFP" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFR" = (/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFU" = (/turf/closed/wall,/area/medical/surgery) +"bFV" = (/obj/structure/table/glass,/obj/item/flashlight/pen,/obj/item/clothing/neck/stethoscope,/obj/item/lipstick/black,/obj/machinery/power/apc{dir = 8; name = "Personal Examination Room APC"; pixel_x = -25},/obj/structure/cable,/obj/item/reagent_containers/pill/morphine,/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bFW" = (/obj/effect/decal/remains/human,/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bFX" = (/obj/structure/bed,/obj/item/bedsheet/cmo,/obj/effect/decal/cleanable/blood/drip,/obj/item/restraints/handcuffs,/obj/item/clothing/mask/muzzle,/obj/machinery/light_switch{pixel_y = -22},/turf/open/floor/plasteel/dark,/area/medical/exam_room) +"bFY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/departments/examroom{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bFZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/department/engine) +"bGa" = (/obj/structure/sign/departments/science,/turf/closed/wall,/area/hallway/primary/aft) +"bGb" = (/obj/machinery/door/airlock/security/glass{name = "Research Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) +"bGc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint/science) +"bGd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bGe" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bGf" = (/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/line,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/engine,/area/science/storage) +"bGg" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage) +"bGh" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bGi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 8; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/engine,/area/science/storage) +"bGj" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"bGk" = (/obj/machinery/light,/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/dark,/area/science/explab) +"bGl" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/science/explab) +"bGm" = (/obj/structure/closet/emcloset,/obj/machinery/light_switch{dir = 8; pixel_x = -24; pixel_y = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGn" = (/obj/machinery/vending/wardrobe/science_wardrobe,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGo" = (/obj/item/assembly/signaler{pixel_y = 8},/obj/item/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGp" = (/obj/item/transfer_valve{pixel_x = -5},/obj/item/transfer_valve{pixel_x = -5},/obj/item/transfer_valve,/obj/item/transfer_valve,/obj/item/transfer_valve{pixel_x = 5},/obj/item/transfer_valve{pixel_x = 5},/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Toxins Lab Port"; dir = 1; network = list("ss13","rd")},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGq" = (/obj/item/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/assembly/timer,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/white,/area/science/mixing) +"bGs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bGt" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bGu" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bGv" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bGw" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bGx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel,/area/science/mixing) +"bGy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bGA" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Launch Maintenance"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/science/mixing) +"bGB" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"bGD" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space/nearstation) +"bGE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/dock) +"bGF" = (/obj/machinery/door/airlock/external{name = "Pod Docking Bay"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/chapel/dock) +"bGG" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/floor/plating/airless,/area/chapel/dock) +"bGH" = (/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) +"bGI" = (/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) +"bGK" = (/obj/structure/closet/boxinggloves,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bGM" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/department/engine) +"bGN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bGO" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bGP" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bGQ" = (/obj/structure/window/reinforced,/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bGR" = (/obj/machinery/door/window/eastleft{dir = 2; name = "Monkey Pen"; req_one_access_txt = "39"},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bGS" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idInterior = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = 8; pixel_y = 22; req_access_txt = "39"},/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bGT" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bGU" = (/obj/machinery/power/apc/highcap/five_k{dir = 1; name = "Virology APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{pixel_x = 22},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bGV" = (/obj/machinery/shower{dir = 4},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bGW" = (/turf/open/floor/plasteel/white,/area/medical/virology) +"bGX" = (/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bGY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bGZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bHa" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bHb" = (/obj/structure/closet/crate/freezer/surplus_limbs,/obj/item/reagent_containers/glass/beaker/synthflesh,/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bHc" = (/obj/machinery/computer/med_data,/obj/machinery/status_display/evac{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bHd" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bHe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/medical/surgery) +"bHf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHh" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHi" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHj" = (/obj/item/storage/belt/utility,/obj/item/clothing/glasses/science,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHk" = (/obj/item/gps{gpstag = "RD0"},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/ears/earmuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHl" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/mask/gas,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHr" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bHu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/science/storage) +"bHv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/engine,/area/science/storage) +"bHw" = (/turf/closed/wall/r_wall,/area/science/storage) +"bHy" = (/turf/closed/wall/r_wall,/area/science/mixing) +"bHz" = (/obj/machinery/atmospherics/components/binary/valve,/obj/machinery/button/door/incinerator_vent_toxmix{pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bHA" = (/obj/machinery/atmospherics/components/binary/valve,/obj/machinery/button/ignition{id = "toxigniter"; pixel_x = -6; pixel_y = -24},/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{pixel_x = 6; pixel_y = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"bHC" = (/obj/machinery/atmospherics/components/binary/pump{name = "Incinerator Output Pump"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bHD" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) +"bHE" = (/obj/structure/window/reinforced,/obj/machinery/doppler_array/research/science,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"bHI" = (/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) +"bHJ" = (/turf/open/floor/plating,/area/chapel/dock) +"bHK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/chapel/dock) +"bHL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/chapel/dock) +"bHM" = (/turf/closed/wall/r_wall,/area/chapel/dock) +"bHN" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bHP" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bHQ" = (/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bHR" = (/obj/effect/decal/cleanable/vomit/old,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bHS" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bHT" = (/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/department/engine) +"bHU" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bHV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bHX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bHY" = (/obj/machinery/camera{c_tag = "Virology"; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) +"bIa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/virology) +"bIb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bIc" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bId" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIe" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/light,/obj/machinery/camera{c_tag = "Medbay Equipment Room"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIf" = (/obj/machinery/vending/wardrobe/medi_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIg" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/storage/box/syringes,/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/reagent_containers/spray/cleaner,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIj" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/surgery) +"bIk" = (/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bIl" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bIm" = (/obj/machinery/camera{c_tag = "Medbay Recovery Room"; dir = 8; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bIn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/surgery) +"bIo" = (/obj/structure/closet/crate/freezer/blood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light_switch{pixel_x = -22},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sink{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIq" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Surgery"; network = list("ss13","surgery")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/wallmed{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIs" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bIt" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng2"; location = "Eng"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci6"; location = "Eng3"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIy" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci7"; location = "Sci6"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bID" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng"; location = "Sci5"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bIE" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) +"bIF" = (/obj/structure/tank_dispenser,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/bot,/obj/machinery/light,/turf/open/floor/engine,/area/science/storage) +"bIG" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) +"bIH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/power/apc{name = "Toxins Storage APC"; pixel_y = -25},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/storage) +"bII" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"bIJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/bot,/obj/machinery/light,/turf/open/floor/engine,/area/science/storage) +"bIK" = (/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"bIL" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,/turf/open/floor/engine,/area/science/mixing) +"bIM" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/science/mixing) +"bIN" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 4; layer = 4; name = "Test Chamber Telescreen"; network = list("toxins"); pixel_x = -32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"bIP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"bIQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"bIR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) +"bIT" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"bIU" = (/obj/effect/spawner/structure/window/reinforced,/turf/closed/wall,/area/chapel/dock) +"bIV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/chapel/dock) +"bIW" = (/obj/machinery/computer/shuttle/monastery_shuttle,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bIX" = (/obj/machinery/atmospherics/components/unary/tank/air,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bIY" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space) +"bIZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/engine) +"bJa" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJb" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJc" = (/obj/structure/chair/comfy/black,/obj/item/trash/pistachios,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJd" = (/obj/structure/chair/comfy/black,/obj/item/stack/spacecash/c100,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJe" = (/obj/structure/chair/comfy/black,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJf" = (/obj/structure/chair/comfy/black,/obj/item/cigbutt,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJg" = (/obj/item/trash/popcorn,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJh" = (/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bJi" = (/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bJj" = (/obj/structure/rack,/obj/item/cartridge/medical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bJk" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/infections,/obj/item/hand_labeler,/obj/item/radio/headset/headset_med,/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bJl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bJm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) +"bJn" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/white,/area/medical/virology) +"bJo" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bJp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bJq" = (/obj/machinery/door/airlock/medical/glass{name = "Recovery Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bJr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bJs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bJt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Surgery"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bJu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJw" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJy" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bJz" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bJA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bJB" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/machinery/camera{c_tag = "Research Division Entrance"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/space_heater,/obj/structure/sign/poster/random{pixel_y = -32},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/portable_atmospherics/canister/air,/obj/structure/sign/poster/random{pixel_x = 32},/obj/structure/sign/poster/random{pixel_y = -32},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bJN" = (/turf/closed/wall/r_wall,/area/engine/atmos) +"bJO" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Toxins Storage"; req_access_txt = "24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/storage) +"bJP" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) +"bJQ" = (/obj/machinery/atmospherics/components/binary/pump/on,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airlock_sensor/incinerator_toxmix{pixel_x = -24},/turf/open/floor/engine,/area/science/mixing) +"bJR" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{dir = 8},/turf/open/floor/engine,/area/science/mixing) +"bJS" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/science/mixing) +"bJT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{req_access_txt = "8"},/turf/open/floor/plating,/area/science/mixing) +"bJV" = (/obj/machinery/mass_driver{id = "toxinsdriver"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{dir = 8; name = "Mass Driver Door"; req_access_txt = "7"},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plating,/area/science/mixing) +"bJZ" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bKa" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bKb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bKc" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bKd" = (/obj/machinery/power/apc{dir = 4; name = "Monastery Docking Bay APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bKe" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"bKf" = (/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"bKh" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Arena"},/obj/structure/window/reinforced{dir = 1},/obj/structure/chair/stool,/turf/open/floor/engine,/area/maintenance/department/engine) +"bKi" = (/obj/structure/window/reinforced{dir = 1},/mob/living/simple_animal/chicken{name = "Bloodthirsty Peckins"},/turf/open/floor/engine,/area/maintenance/department/engine) +"bKj" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/engine,/area/maintenance/department/engine) +"bKk" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/engine,/area/maintenance/department/engine) +"bKl" = (/obj/item/stack/medical/gauze,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bKm" = (/obj/structure/light_construct{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bKn" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/virology) +"bKo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bKp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation A"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bKq" = (/obj/effect/spawner/structure/window,/obj/structure/sign/warning/deathsposal,/turf/open/floor/plating,/area/medical/virology) +"bKr" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/medical/virology) +"bKs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bKt" = (/obj/machinery/computer/pandemic,/turf/open/floor/plasteel/white,/area/medical/virology) +"bKu" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bKv" = (/obj/item/bedsheet/medical,/obj/structure/bed,/obj/structure/mirror{pixel_x = -28},/obj/structure/curtain{layer = 4.5},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bKw" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bKx" = (/obj/machinery/button/door{id = "patientB"; name = "Privacy Shutters"; pixel_y = 25},/obj/machinery/camera{c_tag = "Patient Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bKy" = (/obj/machinery/door/airlock/medical{name = "Patient Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bKz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/item/beacon,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bKA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bKB" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bKC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bKD" = (/obj/structure/bed,/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bKE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bKF" = (/obj/structure/table/optable,/turf/open/floor/plasteel/white,/area/medical/surgery) +"bKG" = (/obj/machinery/power/apc{dir = 4; name = "Surgery APC"; pixel_x = 26},/obj/structure/cable,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bKH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) +"bKI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bKJ" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bKK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bKM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/aft) +"bKO" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/dark,/area/engine/atmos) +"bKP" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/engine/atmos) +"bKQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) +"bKR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) +"bKS" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/machinery/power/apc{dir = 8; name = "Atmospherics APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/watertank/high,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/atmos) +"bKT" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bKU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bKV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bKW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bKX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix to Engine"},/turf/open/floor/plasteel,/area/engine/atmos) +"bKY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix Outlet Pump"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bKZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bLa" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"bLb" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) +"bLc" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "mix_in"; name = "distro out"},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bLd" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bLe" = (/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bLf" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,/turf/open/floor/engine,/area/science/mixing) +"bLh" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/science/mixing) +"bLn" = (/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLp" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLq" = (/obj/machinery/door/airlock/grunge{name = "Monastery Transit"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"bLs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bLt" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bLu" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/maintenance/department/engine) +"bLv" = (/turf/open/floor/engine,/area/maintenance/department/engine) +"bLx" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/engine,/area/maintenance/department/engine) +"bLy" = (/obj/structure/mineral_door/wood{name = "The Roosterdome"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bLz" = (/obj/item/bedsheet/medical,/obj/structure/bed,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bLA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bLB" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bLC" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/item/stack/sheet/mineral/plasma{amount = 2},/obj/item/storage/box/monkeycubes{layer = 3.1},/obj/item/clothing/gloves/color/latex,/turf/open/floor/plasteel/white,/area/medical/virology) +"bLE" = (/obj/structure/table/glass,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32; receive_ore_updates = 1},/obj/item/paper_bin{layer = 2.9},/obj/item/pen/red,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bLF" = (/obj/structure/table,/obj/item/clipboard,/obj/item/pen{layer = 3.1},/obj/item/clothing/neck/stethoscope{layer = 3.2},/obj/machinery/light_switch{pixel_x = -22},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bLG" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bLH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) +"bLI" = (/obj/machinery/door/poddoor/shutters/preopen{id = "patientB"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) +"bLJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bLK" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bLL" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/surgery) +"bLM" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLO" = (/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLQ" = (/obj/structure/table,/obj/item/surgical_drapes,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bLR" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bLS" = (/obj/machinery/vending/cola,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bLT" = (/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bLU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/aft) +"bLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) +"bLW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) +"bLX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) +"bLY" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest{pixel_x = 3},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bLZ" = (/obj/machinery/meter/atmos/atmos_waste_loop,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMa" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMb" = (/obj/machinery/meter/atmos/distro_loop,/obj/machinery/atmospherics/pipe/manifold/supply/visible,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMc" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Distro"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMe" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bMf" = (/turf/open/floor/plasteel,/area/engine/atmos) +"bMg" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMh" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "mix_in"; name = "Gas Mix Tank Control"; output_tag = "mix_in"; sensors = list("mix_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bMi" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating/airless,/area/engine/atmos) +"bMj" = (/obj/machinery/air_sensor{id_tag = "mix_sensor"},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bMk" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bMl" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "inc_in"},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/engine/vacuum,/area/science/mixing) +"bMm" = (/obj/machinery/igniter{id = "toxigniter"; luminosity = 2},/turf/open/floor/engine/vacuum,/area/science/mixing) +"bMn" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 1},/turf/open/floor/engine/vacuum,/area/science/mixing) +"bMp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/science/mixing) +"bMq" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/science/mixing) +"bMr" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"bMs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bMt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bMu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bMv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/dock) +"bMw" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"bMx" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"bMy" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bMA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/maintenance/department/engine) +"bMB" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/engine,/area/maintenance/department/engine) +"bMC" = (/obj/item/stack/spacecash/c10,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bMD" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bME" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bMF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bMG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bMH" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/syringes,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/white,/area/medical/virology) +"bMI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/virologist,/turf/open/floor/plasteel/white,/area/medical/virology) +"bMJ" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{pixel_x = 32},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/hud/health,/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMK" = (/obj/item/soap/nanotrasen,/obj/item/clothing/neck/stethoscope,/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/gun/syringe/dart,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bMM" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bMN" = (/obj/structure/table,/obj/item/hemostat,/obj/item/stack/medical/gauze,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMO" = (/obj/structure/table,/obj/item/surgicaldrill,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMP" = (/obj/structure/table,/obj/item/scalpel{pixel_y = 12},/obj/item/circular_saw,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMQ" = (/obj/structure/table,/obj/item/cautery{pixel_x = 4},/obj/item/razor{pixel_y = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMR" = (/obj/structure/table,/obj/item/retractor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) +"bMS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bMT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bMU" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Atmospherics"; start_active = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecomms)"; pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bMV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bMW" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/primary/aft) +"bMX" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"bMY" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "External to Filter"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bMZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bNa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bNb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) +"bNc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bNd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bNe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bNf" = (/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/atmos) +"bNg" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bNh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{name = "Mix to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) +"bNi" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bNj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) +"bNk" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bNl" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bNm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bNn" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"bNo" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "mix_in"; pixel_y = 1},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bNp" = (/turf/open/floor/engine/vacuum,/area/science/mixing) +"bNq" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Launch Maintenance"; req_access_txt = "8"},/turf/open/floor/plating,/area/maintenance/department/science) +"bNr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bNs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"bNt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Monastery Dock"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bNu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bNv" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/light/small,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bNw" = (/turf/closed/wall,/area/chapel/dock) +"bNx" = (/obj/structure/transit_tube/station/reverse{dir = 1},/turf/open/floor/plating,/area/chapel/dock) +"bNy" = (/obj/structure/transit_tube/horizontal,/obj/machinery/camera{c_tag = "Monastery Transit"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plating,/area/chapel/dock) +"bNz" = (/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/chapel/dock) +"bNA" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/dock) +"bNB" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"bNE" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"bNF" = (/obj/item/stack/medical/suture,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bNG" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/maintenance/department/engine) +"bNH" = (/obj/structure/window/reinforced,/turf/open/floor/engine,/area/maintenance/department/engine) +"bNI" = (/obj/structure/window/reinforced,/mob/living/simple_animal/chicken{name = "Killer Cluck"},/turf/open/floor/engine,/area/maintenance/department/engine) +"bNJ" = (/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Arena"},/obj/structure/window/reinforced,/obj/structure/chair/stool,/turf/open/floor/engine,/area/maintenance/department/engine) +"bNK" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNL" = (/obj/structure/table/glass,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/beaker,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNM" = (/obj/structure/table/glass,/obj/item/folder/white{pixel_y = 4},/obj/item/pen/red,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNN" = (/obj/structure/table/glass,/obj/item/folder/white{pixel_y = 4},/obj/item/pen/red,/obj/machinery/light/small,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNO" = (/obj/structure/table/glass,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/beaker,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNP" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNQ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/vending/wardrobe/viro_wardrobe,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNR" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNS" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNT" = (/obj/structure/closet/firecloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"bNU" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNV" = (/obj/item/wrench/medical,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNW" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bNX" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bNY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bNZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOb" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/aft) +"bOf" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) +"bOg" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bOh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"bOi" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/wardrobe/atmos_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bOj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall,/area/engine/atmos) +"bOk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bOl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bOm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bOn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bOo" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bOp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bOq" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Pure to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) +"bOr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bOs" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/mixing) +"bOt" = (/obj/machinery/door/poddoor/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing) +"bOu" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/science/mixing) +"bOv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bOw" = (/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bOx" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bOy" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bOz" = (/obj/structure/chair/comfy/black{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bOA" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bOB" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) +"bOC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/medical/virology) +"bOD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/virology) +"bOE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/virology) +"bOF" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOH" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bOM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/primary/aft) +"bON" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) +"bOO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bOP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"bOQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/engine/atmos) +"bOR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plating,/area/engine/atmos) +"bOS" = (/obj/effect/turf_decal/vg_decals/atmos/mix,/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bOT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall,/area/engine/atmos) +"bOU" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste to Filter"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bOV" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External"},/turf/open/floor/plasteel,/area/engine/atmos) +"bOX" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bOZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) +"bPa" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bPd" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bPe" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bPf" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bPg" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "n2o_out"; name = "n2o out"},/turf/open/floor/engine/n2o,/area/engine/atmos) +"bPh" = (/turf/open/floor/engine/n2o,/area/engine/atmos) +"bPl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{req_access_txt = "8"},/turf/open/floor/plating,/area/science/mixing) +"bPn" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bPo" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) +"bPp" = (/obj/structure/sign/poster/contraband/random{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bPq" = (/obj/item/trash/chips,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bPr" = (/obj/structure/table,/obj/item/paper,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"bPs" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) +"bPt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bPu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/engine) +"bPv" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bPw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bPx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bPy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space/basic,/area/space/nearstation) +"bPz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bPA" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/department/engine) +"bPB" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"bPC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/engine) +"bPD" = (/obj/structure/table,/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/department/engine) +"bPE" = (/turf/closed/wall,/area/storage/tech) +"bPF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Tech Storage Maintenance"; req_access_txt = "23"},/turf/open/floor/plating,/area/storage/tech) +"bPG" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPJ" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPK" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/wrench,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPL" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPM" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPN" = (/obj/machinery/conveyor_switch{id = "atmosdeliver"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bPO" = (/obj/structure/disposalpipe/sorting/mail{sortType = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bPP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/atmospherics,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bPQ" = (/turf/closed/wall,/area/engine/atmos) +"bPR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) +"bPS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/camera{c_tag = "Atmospherics Central"; dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bPT" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/turf/open/floor/plasteel,/area/engine/atmos) +"bPU" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) +"bPV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bPW" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bPX" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bPY" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) +"bPZ" = (/obj/machinery/air_sensor{id_tag = "n2o_sensor"},/turf/open/floor/engine/n2o,/area/engine/atmos) +"bQa" = (/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide,/turf/open/floor/engine/n2o,/area/engine/atmos) +"bQb" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/n2o,/turf/open/floor/engine/n2o,/area/engine/atmos) +"bQc" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Dock Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bQd" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/reedbush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bQe" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bQf" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/sand,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) +"bQg" = (/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) +"bQh" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Dock Staboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bQi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bQj" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQm" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQn" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQo" = (/obj/machinery/camera{c_tag = "Gravity Generator"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bQr" = (/turf/closed/wall/r_wall,/area/storage/tech) +"bQs" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/item/aicard,/obj/item/aiModule/reset,/obj/item/assembly/flash/handheld,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQu" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stock_parts/cell/high/plus,/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQv" = (/obj/structure/rack,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/spawner/lootdrop/techstorage/engineering,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQw" = (/obj/structure/rack,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/camera{c_tag = "Tech Storage"},/obj/item/circuitboard/computer/monastery_shuttle,/obj/effect/spawner/lootdrop/techstorage/service,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQx" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQy" = (/obj/structure/rack,/obj/item/electronics/airalarm,/obj/item/electronics/airlock,/obj/item/electronics/apc,/obj/item/electronics/firealarm,/obj/item/electronics/firelock,/obj/item/electronics/tracker,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQz" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQA" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bQB" = (/obj/machinery/power/apc{dir = 8; name = "Aft Hall APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bQC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng3"; location = "Eng2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bQD" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bQE" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) +"bQF" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"bQH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) +"bQI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) +"bQJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Ports to Filter"},/turf/open/floor/plasteel,/area/engine/atmos) +"bQK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bQL" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bQM" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Unfiltered to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) +"bQO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bQP" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "n2o_in"; pixel_y = 1},/turf/open/floor/engine/n2o,/area/engine/atmos) +"bQQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) +"bQR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) +"bQS" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bQT" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQU" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bQV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"bQW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bQX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bQY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bQZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bRa" = (/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"bRb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bRc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"bRd" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRe" = (/obj/structure/closet/radiation,/obj/machinery/camera{c_tag = "Gravity Generator Foyer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/storage/tech) +"bRg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/warning/radiation/rad_area{pixel_x = -32},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRj" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRm" = (/obj/machinery/light_switch{pixel_x = 25},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) +"bRs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/engine/atmos) +"bRt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bRu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bRw" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bRx" = (/obj/machinery/computer/atmos_control,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bRy" = (/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/atmos) +"bRz" = (/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/engine/atmos) +"bRA" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/engine/atmos) +"bRB" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bRC" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bRD" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) +"bRE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/maintenance/department/engine) +"bRF" = (/obj/structure/girder,/turf/closed/wall,/area/maintenance/department/engine) +"bRG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bRH" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bRK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/tech) +"bRL" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRO" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/medical,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/tcomms,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRR" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRT" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRU" = (/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "23"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bRV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bRZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSa" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/obj/machinery/conveyor{dir = 4; id = "atmosdeliver"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) +"bSb" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Atmospherics"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/conveyor_switch{id = "atmosdeliver"},/turf/open/floor/plasteel,/area/engine/atmos) +"bSc" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) +"bSd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"bSe" = (/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bSf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bSh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bSj" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "tox_out"; name = "toxin out"},/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSk" = (/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSl" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSm" = (/obj/structure/flora/ausbushes,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bSn" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) +"bSo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bSp" = (/obj/structure/disposalpipe/junction/yjunction{dir = 2},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bSq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bSs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bSt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/engine) +"bSu" = (/obj/item/broken_bottle,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bSv" = (/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/department/engine) +"bSw" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bSx" = (/obj/structure/closet,/obj/item/restraints/handcuffs/cable,/turf/open/floor/plating,/area/maintenance/department/engine) +"bSy" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"bSz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bSA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"bSB" = (/obj/structure/chair/office/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bSC" = (/obj/machinery/power/terminal,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bSD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/storage/tech) +"bSE" = (/obj/structure/sign/warning/radiation/rad_area{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/beacon,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bSL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSN" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Engineering"; dir = 1; start_active = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSP" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSQ" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) +"bSR" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bSS" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bST" = (/obj/machinery/computer/atmos_alert{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bSU" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bSV" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "tox_in"; name = "Plasma Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bSW" = (/obj/machinery/air_sensor{id_tag = "tox_sensor"},/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSX" = (/obj/effect/turf_decal/vg_decals/atmos/plasma,/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSY" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma,/area/engine/atmos) +"bSZ" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) +"bTa" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bTb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) +"bTc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/maintenance/department/engine) +"bTd" = (/obj/item/stack/sheet/cardboard{amount = 14},/obj/item/vending_refill/cola,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bTf" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Virology Waste to Space"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bTg" = (/obj/machinery/atmospherics/components/binary/pump{name = "Virology Waste to Atmospherics"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bTh" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Air Out"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bTi" = (/obj/item/picket_sign,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bTj" = (/obj/structure/bonfire,/turf/open/floor/plating,/area/maintenance/department/engine) +"bTk" = (/obj/structure/closet,/obj/item/cigbutt/cigarbutt,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bTl" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/engine) +"bTm" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTn" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTo" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) +"bTr" = (/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/structure/table,/obj/item/paper/guides/jobs/engi/gravity_gen,/obj/item/pen/blue,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/gravity_generator) +"bTs" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/smes{charge = 5e+006},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/engine/gravity_generator) +"bTt" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/crate/engineering/electrical,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/electronics/apc,/obj/item/electronics/airalarm,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTw" = (/obj/structure/rack,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTx" = (/obj/structure/rack,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/obj/machinery/light{light_color = "#cee5d2"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTy" = (/obj/structure/rack,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTz" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTA" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/multitool,/obj/machinery/requests_console{department = "Tech storage"; pixel_y = -32},/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTB" = (/obj/machinery/power/apc{areastring = "/area/storage/tech"; name = "Tech Storage APC"; pixel_y = -24},/obj/structure/cable,/obj/structure/closet/crate/solarpanel_small,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bTC" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/engineering) +"bTD" = (/turf/closed/wall,/area/security/checkpoint/engineering) +"bTE" = (/turf/closed/wall,/area/engine/engineering) +"bTF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/engineering{name = "Engineering"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"bTG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/break_room) +"bTH" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bTI" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bTK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/sign/plaques/atmos{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Atmospherics Entrance"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/engine/atmos) +"bTL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/pipedispenser/disposal,/turf/open/floor/plasteel,/area/engine/atmos) +"bTM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/fireaxecabinet{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bTN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) +"bTO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/atmos) +"bTP" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 1},/obj/machinery/camera{c_tag = "Atmospherics Starboard"; dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bTQ" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"bTR" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bTS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bTT" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bTV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "tox_in"; pixel_y = 1},/turf/open/floor/engine/plasma,/area/engine/atmos) +"bTW" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"bTX" = (/obj/structure/table,/obj/item/storage/box/mousetraps,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUb" = (/obj/structure/grille/broken,/obj/structure/musician/piano,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUc" = (/obj/item/reagent_containers/food/snacks/beans,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUd" = (/obj/structure/closet,/obj/item/shard,/obj/item/stack/spacecash/c10,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUe" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUf" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/storage/tech) +"bUg" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bUh" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/storage/tech) +"bUi" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/machinery/camera{c_tag = "Engineering Security Post"; dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUj" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUk" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUl" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "Engineering Foyer APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/break_room) +"bUm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/break_room) +"bUn" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Engineering Access"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/break_room) +"bUo" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/break_room) +"bUp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bUq" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) +"bUr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bUs" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) +"bUt" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bUu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bUv" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bUw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bUy" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bUz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bUA" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bUC" = (/obj/structure/flora/ausbushes/fernybush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bUD" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/space,/area/space/nearstation) +"bUE" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/space,/area/space/nearstation) +"bUF" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUG" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/maintenance/department/engine) +"bUH" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/chief) +"bUI" = (/obj/item/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/cartridge/atmos,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUJ" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Chief Engineer's Office"},/obj/machinery/computer/security/telescreen/ce{pixel_y = 30},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUK" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/computer/apc_control,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUL" = (/obj/machinery/computer/station_alert,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUM" = (/obj/machinery/computer/card/minor/ce,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bUN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/stairs,/area/storage/tech) +"bUO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/storage/tech) +"bUP" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall,/area/engine/engine_smes) +"bUQ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bUR" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/obj/machinery/camera{c_tag = "Engineering Power Storage"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bUS" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/smes/engineering,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bUT" = (/turf/closed/wall,/area/engine/engine_smes) +"bUU" = (/turf/closed/wall/r_wall,/area/engine/engine_smes) +"bUV" = (/obj/structure/table,/obj/item/pen,/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUW" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUX" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUY" = (/obj/machinery/door/airlock/security/glass{name = "Engineering Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bUZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/break_room) +"bVa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/goonplaque,/area/engine/break_room) +"bVb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"bVc" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/break_room) +"bVd" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bVe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bVf" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bVg" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) +"bVh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/plating,/area/engine/atmos) +"bVi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/plating,/area/engine/atmos) +"bVj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump{name = "incinerator mix pump"},/turf/open/floor/plasteel,/area/engine/atmos) +"bVk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bVl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bVm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plating,/area/engine/atmos) +"bVn" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) +"bVo" = (/turf/open/floor/engine/co2,/area/engine/atmos) +"bVp" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bVr" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/space/nearstation) +"bVs" = (/obj/structure/mopbucket,/obj/item/mop,/turf/open/floor/plating,/area/maintenance/department/engine) +"bVu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"bVv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bVw" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bVy" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"bVz" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bVC" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/engine) +"bVD" = (/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -10; req_access_txt = "10"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = -24; req_access_txt = "11"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -24; pixel_y = 10; req_access_txt = "24"},/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/paper/monitorkey,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bVE" = (/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bVG" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bVH" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/lighter,/obj/item/stamp/ce,/obj/item/stock_parts/cell/high/plus,/obj/machinery/keycard_auth{pixel_x = 26; pixel_y = 26},/obj/machinery/power/apc{dir = 4; name = "CE Office APC"; pixel_x = 28},/obj/structure/cable{icon_state = "0-8"},/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bVI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bVJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bVK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) +"bVL" = (/obj/structure/table,/obj/item/storage/box/smart_metal_foam{pixel_x = 4; pixel_y = 7},/obj/item/storage/box/lights/mixed,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bVM" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bVN" = (/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bVO" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/power/apc{areastring = "/area/security/checkpoint/engineering"; dir = 8; name = "Engineering Security APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bVP" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bVQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bVR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/engineering) +"bVS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) +"bVT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/break_room) +"bVU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_x = 27; pixel_y = -25},/turf/open/floor/plasteel,/area/engine/break_room) +"bVW" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bVY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bVZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bWb" = (/obj/machinery/computer/atmos_control/tank/carbon_tank{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bWc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) +"bWe" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2,/area/engine/atmos) +"bWf" = (/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) +"bWg" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) +"bWh" = (/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) +"bWi" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/reedbush,/obj/machinery/camera{c_tag = "Monastery Asteroid Primary Entrance"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"bWj" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bWk" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"bWl" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"bWn" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/item/clothing/glasses/meson/gar,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bWo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bWp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bWq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bWr" = (/obj/machinery/modular_computer/console/preset/engineering{dir = 8},/obj/machinery/light_switch{pixel_x = 22},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bWs" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/RnD_secure,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bWt" = (/obj/structure/rack,/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 1},/obj/effect/spawner/lootdrop/techstorage/command,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bWu" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) +"bWv" = (/obj/structure/table,/obj/item/stack/sheet/plasteel/twenty{pixel_x = -3; pixel_y = 3},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/computer/security/telescreen{desc = "Used for watching the engine containment area."; dir = 4; name = "Engine Monitor"; network = list("engine"); pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWw" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/landmark/start/station_engineer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWy" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWz" = (/obj/structure/tank_dispenser,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bWA" = (/obj/structure/filingcabinet,/obj/machinery/computer/security/telescreen{desc = "Used for watching the engine containment area."; dir = 4; name = "Engine Monitor"; network = list("engine"); pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bWB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bWC" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/structure/closet/secure_closet/security/engine,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) +"bWD" = (/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) +"bWE" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"bWF" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) +"bWG" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/delivery,/obj/machinery/shower{dir = 8; pixel_y = -4},/turf/open/floor/plasteel,/area/engine/break_room) +"bWH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/engine/break_room) +"bWI" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bWJ" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"bWM" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"bWO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bWP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) +"bWQ" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bWR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) +"bWT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) +"bWV" = (/turf/closed/wall,/area/chapel/main/monastery) +"bWW" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"bWX" = (/obj/effect/turf_decal/sand,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) +"bWZ" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"bXa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bXd" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"bXe" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"bXf" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXg" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXi" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "ce_privacy"; name = "Privacy Shutters"; pixel_x = 24; req_access_txt = "11"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXk" = (/turf/closed/wall/r_wall,/area/engine/engineering) +"bXl" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/cable_coil,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/engine_smes"; dir = 8; name = "Engine Room APC"; pixel_x = -26},/obj/structure/cable,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/cable_coil,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bXm" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bXn" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bXo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bXp" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"bXq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) +"bXr" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/binary/pump{name = "Waste to Space"},/turf/open/floor/plasteel,/area/engine/atmos) +"bXs" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bXt" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bXu" = (/obj/machinery/computer/atmos_control/tank/nitrogen_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bXv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bXw" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plasteel,/area/engine/atmos) +"bXx" = (/obj/machinery/computer/atmos_control/tank/oxygen_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"bXy" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"bXA" = (/obj/machinery/atmospherics/components/trinary/mixer/airmix,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bXB" = (/obj/machinery/computer/atmos_control/tank/air_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bXC" = (/obj/machinery/light,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bXD" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bXE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bXF" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"bXG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) +"bXI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"bXJ" = (/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"bXL" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"bXM" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"bXN" = (/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"bXS" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"bXU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bXV" = (/obj/item/shard{icon_state = "small"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"bXY" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) +"bXZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) +"bYa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/airlock/command{name = "Chief Engineer"; req_access_txt = "56"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bYb" = (/turf/closed/wall,/area/crew_quarters/heads/chief) +"bYc" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYd" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYe" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/turf/open/floor/plating,/area/engine/engine_smes) +"bYg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engine_smes) +"bYh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Power Storage"; req_access_txt = "11"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) +"bYi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engine_smes) +"bYj" = (/obj/machinery/vending/engivend,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYk" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYl" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"bYm" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) +"bYn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bYo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/light{dir = 4},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) +"bYp" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) +"bYs" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bYt" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/disposal/incinerator) +"bYu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/atmos{name = "Incinerator"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bYv" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 9},/turf/closed/wall,/area/maintenance/disposal/incinerator) +"bYw" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bYz" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"bYA" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) +"bYB" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) +"bYF" = (/obj/item/trash/pistachios,/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/department/engine) +"bYI" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYK" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Engineering Port Fore"},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bYO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bYQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYS" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYT" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"bYU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bYW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Engineering Starboard Fore"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bYZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bZa" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bZc" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bZf" = (/obj/machinery/power/apc{dir = 8; name = "Incinerator APC"; pixel_x = -24},/obj/machinery/airalarm{pixel_y = 22},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZg" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZh" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZi" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bZj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bZl" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) +"bZm" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) +"bZn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) +"bZo" = (/turf/open/floor/carpet,/area/chapel/main/monastery) +"bZr" = (/obj/item/trash/tray,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bZs" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/department/engine) +"bZt" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"bZx" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/item/storage/belt/utility,/obj/item/flashlight,/obj/item/flashlight,/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bZy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"bZz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"bZA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"bZB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bZD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"bZE" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"bZF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"bZG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) +"bZI" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"bZJ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"bZK" = (/obj/structure/lattice,/obj/machinery/atmospherics/components/unary/relief_valve/atmos/atmos_waste{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space,/area/engine/atmos) +"bZL" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) +"bZM" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank In"},/turf/closed/wall/r_wall,/area/engine/atmos) +"bZN" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank Out"},/turf/closed/wall/r_wall,/area/engine/atmos) +"bZO" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZQ" = (/obj/machinery/computer/turbine_computer{dir = 8; id = "incineratorturbine"},/obj/machinery/button/door/incinerator_vent_atmos_main{pixel_x = 24; pixel_y = 6},/obj/machinery/button/door/incinerator_vent_atmos_aux{pixel_x = 24; pixel_y = -6},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"bZR" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bZS" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airlock_sensor/incinerator_atmos{pixel_y = 22},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"bZT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bZU" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{dir = 8},/obj/machinery/air_sensor/atmos/incinerator_tank{pixel_x = 32; pixel_y = -32},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"bZV" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"bZY" = (/turf/closed/wall,/area/chapel/office) +"caa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"cab" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"cae" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/engine/engineering) +"caf" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) +"cah" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"caj" = (/obj/structure/table,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/apc,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cak" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"cal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cam" = (/turf/open/floor/plasteel,/area/engine/engineering) +"can" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"caq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"car" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"caw" = (/obj/structure/table,/obj/item/rcl/pre_loaded,/turf/open/floor/plasteel,/area/engine/engineering) +"cax" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) +"caz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) +"caA" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos) +"caB" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) +"caC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) +"caD" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2,/area/engine/atmos) +"caE" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) +"caF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) +"caG" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air,/area/engine/atmos) +"caH" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) +"caI" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Incinerator"; dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the turbine vent."; dir = 4; name = "turbine vent monitor"; network = list("turbine"); pixel_x = -29},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"caJ" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"caK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"caL" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{pixel_x = -6; pixel_y = -26},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caN" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/igniter/incinerator_atmos,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caQ" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/compressor{comp_id = "incineratorturbine"; dir = 8; luminosity = 2},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caR" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/turbine{dir = 4; luminosity = 2},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"caS" = (/turf/closed/wall,/area/chapel/asteroid/monastery) +"caT" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"caV" = (/obj/machinery/holopad,/obj/item/flashlight/lantern,/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) +"caW" = (/obj/item/flashlight/lantern,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) +"caZ" = (/obj/structure/table,/obj/item/wirecutters,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"cba" = (/obj/structure/table,/obj/item/storage/fancy/cigarettes/cigpack_robustgold,/turf/open/floor/plating,/area/maintenance/department/engine) +"cbb" = (/obj/structure/closet/emcloset,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"cbc" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"cbd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cbe" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/engine/engineering) +"cbf" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cbg" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"cbh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"cbi" = (/obj/structure/rack,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"cbj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) +"cbk" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"cbm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cbn" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) +"cbo" = (/obj/structure/rack,/obj/item/storage/belt/utility,/obj/item/wrench,/obj/item/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/structure/disposalpipe/segment{dir = 5},/obj/item/airlock_painter,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) +"cbp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"cbq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"cbs" = (/turf/open/floor/engine/n2,/area/engine/atmos) +"cbt" = (/obj/effect/turf_decal/vg_decals/atmos/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) +"cbu" = (/turf/open/floor/engine/o2,/area/engine/atmos) +"cbv" = (/obj/effect/turf_decal/vg_decals/atmos/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) +"cbw" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air,/area/engine/atmos) +"cbx" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/vg_decals/atmos/air,/turf/open/floor/engine/air,/area/engine/atmos) +"cby" = (/turf/open/floor/engine/air,/area/engine/atmos) +"cbz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) +"cbA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cbB" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Incinerator to Output"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cbC" = (/obj/machinery/button/ignition/incinerator/atmos{pixel_x = 26; pixel_y = -6},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cbD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"cbE" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"cbF" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{dir = 8},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"cbG" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/chapel/office) +"cbK" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cbM" = (/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) +"cbN" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) +"cbO" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/trophy{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) +"cbP" = (/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) +"cbR" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cbS" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"cbT" = (/obj/item/shovel,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/engine) +"cbV" = (/obj/machinery/shieldgen,/turf/open/floor/plating,/area/engine/engineering) +"cbW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering) +"cbX" = (/turf/open/floor/plating,/area/engine/engineering) +"cbY" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cbZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"cca" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 5},/obj/item/storage/toolbox/mechanical{pixel_x = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"ccb" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = 5},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"ccc" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/engine/engineering) +"cci" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"ccm" = (/obj/machinery/light/small,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) +"ccn" = (/obj/machinery/light/small,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) +"cco" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos) +"ccp" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"ccq" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"ccr" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Incinerator Output Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"ccs" = (/obj/structure/lattice,/turf/closed/wall,/area/maintenance/department/cargo) +"ccu" = (/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"ccE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) +"ccF" = (/obj/effect/landmark/start/chaplain,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/chapel/main/monastery) +"ccH" = (/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) +"ccJ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ccM" = (/obj/structure/chair,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"ccN" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/gauze,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"ccO" = (/obj/structure/bed,/obj/item/bedsheet/random,/obj/structure/table/optable,/turf/open/floor/plating,/area/maintenance/department/engine) +"ccQ" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering) +"ccR" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/gps/engineering,/turf/open/floor/plating,/area/engine/engineering) +"ccW" = (/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/structure/table,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"ccX" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"ccY" = (/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering) +"cda" = (/obj/structure/reflector/single/anchored{dir = 10},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) +"cdc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cdg" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cdh" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cdi" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) +"cdj" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Atmospherics External Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"cdk" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"cdl" = (/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"cdm" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"cdo" = (/turf/open/floor/carpet,/area/chapel/office) +"cdp" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/carpet/black,/area/chapel/office) +"cdq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/chapel/main/monastery) +"cdr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cds" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Port Access"; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdu" = (/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) +"cdw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdC" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cdD" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/kitchen/fork,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"cdE" = (/obj/structure/chair,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/engine) +"cdI" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cdK" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/reagent_dispensers/fueltank/high,/turf/open/floor/plasteel,/area/engine/engineering) +"cdL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cdM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/camera{c_tag = "Engineering Port Aft"; dir = 1; pixel_x = 23},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cdO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"cdR" = (/obj/machinery/door/airlock/engineering/glass{name = "Laser Room"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cdT" = (/obj/machinery/power/emitter/anchored{dir = 4; state = 2},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering) +"cdW" = (/obj/structure/reflector/box/anchored,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"ceb" = (/obj/machinery/computer/rdconsole/production{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"cec" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) +"ced" = (/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"cee" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) +"cef" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) +"ceg" = (/obj/machinery/door/airlock/centcom{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/chapel/office) +"cei" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cej" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cek" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cel" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cen" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceo" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) +"ceq" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/engineering) +"cer" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications Transit Tube"; req_access_txt = "10; 61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cet" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) +"ceu" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engineering) +"cey" = (/obj/structure/girder,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"ceA" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) +"ceB" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/chapel/office) +"ceC" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Crematorium"; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ceE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"ceF" = (/obj/structure/filingcabinet,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ceH" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceK" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceL" = (/obj/structure/table/wood/fancy,/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 8},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ceT" = (/obj/effect/turf_decal/stripes/line,/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/engineering) +"ceU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching telecomms."; layer = 4; name = "Telecomms Telescreen"; network = list("tcomms"); pixel_y = 28},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"ceV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"ceX" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"cfa" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfd" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cff" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) +"cfl" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfm" = (/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) +"cfn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfr" = (/obj/structure/transit_tube_pod,/obj/structure/transit_tube/station/reverse{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering) +"cfs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfu" = (/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine Room"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/engine,/area/engine/engineering) +"cfC" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cfD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Monastery APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cfH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/main/monastery) +"cfI" = (/turf/open/floor/plating,/area/chapel/main/monastery) +"cfJ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/main/monastery) +"cfL" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Starboard Aft"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) +"cfN" = (/turf/closed/mineral,/area/chapel/asteroid/monastery) +"cfO" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering) +"cfP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfQ" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"cfS" = (/obj/structure/table/reinforced,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cfX" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"cfY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Engine"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) +"cgb" = (/obj/machinery/airalarm{pixel_y = 22},/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cgd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cgf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/main/monastery) +"cgg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cgk" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/camera{c_tag = "Monastery Garden"; network = list("ss13","monastery")},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgm" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/watermelon/holy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cgp" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) +"cgr" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/engine/engineering) +"cgs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/engine/engineering) +"cgu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) +"cgv" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"cgx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"cgG" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/main/monastery) +"cgH" = (/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgI" = (/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgJ" = (/obj/item/cultivator,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgK" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/sugarcane,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cgL" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/head/nun_hood,/obj/machinery/button/door{id = "Cell1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cgM" = (/obj/structure/dresser,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cgN" = (/obj/structure/table/wood,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light/small{dir = 4},/obj/item/flashlight/lantern,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cgO" = (/obj/structure/toilet/secret/low_loot{pixel_y = 8},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"cgP" = (/obj/structure/transit_tube,/turf/open/floor/plating/airless,/area/space/nearstation) +"cgQ" = (/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"cgU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cgV" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"cgY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) +"chb" = (/obj/machinery/camera{c_tag = "Monastery Kitchen"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chc" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chd" = (/obj/item/clothing/suit/apron/chef,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chf" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"chi" = (/obj/structure/flora/ausbushes/pointybush,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chj" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chk" = (/obj/structure/sink/puddle,/obj/item/reagent_containers/glass/bucket,/obj/effect/landmark/event_spawn,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chl" = (/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cho" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"chp" = (/obj/machinery/door/airlock{id_tag = "Cell1"; name = "Cell 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chr" = (/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cht" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chu" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"chv" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"chB" = (/obj/item/seeds/banana,/obj/item/seeds/grass,/obj/item/seeds/grape,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chC" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chD" = (/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) +"chG" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/wheat,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"chJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/main/monastery) +"chK" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/instrument/violin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chL" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chM" = (/obj/structure/bed,/obj/item/bedsheet/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"chN" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/item/soap/homemade,/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"chU" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chV" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chW" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 3; pixel_y = 4},/obj/item/reagent_containers/food/condiment/peppermill,/obj/item/storage/box/ingredients/wildcard{layer = 3.1},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chX" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/flour,/obj/item/kitchen/rollingpin,/obj/item/kitchen/knife,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chY" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"chZ" = (/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cib" = (/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cic" = (/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cid" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cif" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/stack/cable_coil/yellow,/turf/open/floor/plating,/area/maintenance/department/engine) +"cig" = (/obj/structure/transit_tube/crossing,/turf/open/floor/plating/airless,/area/space/nearstation) +"cio" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/head/nun_hood,/obj/machinery/button/door{id = "Cell2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"cip" = (/obj/machinery/light/small{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXnineteen,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"ciq" = (/obj/structure/toilet/secret/low_loot{pixel_y = 8},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"cit" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/supermatter) +"civ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"ciy" = (/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"ciz" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciE" = (/obj/structure/flora/ausbushes/genericbush,/obj/machinery/light/small{dir = 4},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciF" = (/obj/machinery/door/airlock{id_tag = "Cell2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"ciG" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Aft"; dir = 1; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"ciI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Gas to Chamber"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) +"ciJ" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciK" = (/obj/structure/table,/obj/item/crowbar,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciN" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciO" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/condiment/saltshaker{layer = 3.1; pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ciS" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciT" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/harebell,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciV" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciW" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/pointybush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"ciX" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/storage/crayons,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"ciY" = (/obj/structure/bed,/obj/item/bedsheet/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) +"ciZ" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) +"cjf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjl" = (/obj/machinery/door/airlock/grunge{name = "Monastery Cemetary"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjm" = (/turf/closed/wall,/area/maintenance/department/chapel/monastery) +"cjo" = (/obj/machinery/hydroponics/soil,/obj/machinery/light/small,/obj/item/seeds/poppy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cjp" = (/turf/closed/wall,/area/library) +"cjq" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/palebush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cjr" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cjt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) +"cju" = (/turf/closed/mineral,/area/asteroid/nearstation/bomb_site) +"cjv" = (/turf/closed/wall,/area/asteroid/nearstation/bomb_site) +"cjw" = (/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/asteroid/nearstation/bomb_site) +"cjx" = (/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"cjB" = (/obj/docking_port/stationary{dir = 8; dwidth = 11; height = 22; id = "whiteship_home"; name = "monastery"; width = 35},/turf/open/space/basic,/area/space) +"cjC" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/main/monastery) +"cjH" = (/obj/machinery/door/airlock/grunge{name = "Chapel Garden"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cjO" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/metal{amount = 20; layer = 3.1},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cjP" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cjQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library) +"cjR" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) +"cjV" = (/obj/machinery/camera/preset/toxins,/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"cjZ" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/wrench,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cka" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckb" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) +"ckc" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckd" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cke" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckf" = (/obj/machinery/power/terminal{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckg" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckh" = (/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cki" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Air Out"},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckk" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/stack/rods/fifty,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckl" = (/obj/machinery/light/small{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/library) +"cko" = (/obj/structure/bookcase/random/religion,/turf/open/floor/plasteel/dark,/area/library) +"ckp" = (/obj/structure/bookcase/random/religion,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckt" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"cku" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) +"ckv" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/machinery/door/window/eastleft{dir = 8; name = "Mass Driver"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckw" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cky" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckz" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckA" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 1},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckB" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckC" = (/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckD" = (/obj/structure/chair/wood/normal,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) +"ckG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckH" = (/turf/open/floor/plasteel/dark,/area/library) +"ckI" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckJ" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering) +"ckK" = (/turf/closed/mineral/random/low_chance,/area/asteroid/nearstation/bomb_site) +"ckL" = (/obj/item/beacon,/turf/open/floor/plating/airless,/area/asteroid/nearstation/bomb_site) +"ckM" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckN" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ckO" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckP" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"ckR" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"ckS" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/item/pen,/obj/machinery/camera{c_tag = "Monastery Library"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckT" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckU" = (/obj/machinery/bookbinder,/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckV" = (/obj/structure/bookcase/random/reference,/turf/open/floor/plasteel/dark,/area/library/lounge) +"ckW" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/plasteel/dark,/area/library) +"ckX" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/plasteel/dark,/area/library/lounge) +"clb" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "mass driver door"},/turf/open/floor/plating,/area/chapel/main/monastery) +"cld" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/department/chapel/monastery) +"cle" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel/monastery) +"clf" = (/obj/machinery/light/small{dir = 1},/obj/item/storage/box/lights/bulbs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"clg" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cli" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"clj" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"},/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"clk" = (/obj/machinery/light/small{dir = 8},/obj/machinery/libraryscanner,/turf/open/floor/plasteel/dark,/area/library/lounge) +"clm" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/dark,/area/library/lounge) +"cln" = (/obj/structure/bookcase/random/adult,/turf/open/floor/plasteel/dark,/area/library/lounge) +"clp" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/dark,/area/library) +"cls" = (/obj/effect/spawner/lootdrop/maintenance,/turf/closed/mineral,/area/asteroid/nearstation/bomb_site) +"clv" = (/turf/closed/mineral/iron,/area/asteroid/nearstation/bomb_site) +"clw" = (/turf/closed/wall/r_wall,/area/tcommsat/computer) +"clz" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating/airless,/area/space/nearstation) +"clA" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"clB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/tcommsat/computer) +"clC" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/tcommsat/computer) +"clD" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"clE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) +"clF" = (/obj/effect/spawner/lootdrop/maintenance,/turf/closed/mineral/random/low_chance,/area/asteroid/nearstation/bomb_site) +"clG" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/computer) +"clH" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) +"clJ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"clL" = (/turf/closed/wall,/area/tcommsat/computer) +"clM" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Waste to Space"},/turf/open/floor/plating,/area/tcommsat/computer) +"clN" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/tcommsat/computer) +"clP" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) +"clQ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"clR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"clS" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/tcommsat/computer) +"clT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/closed/wall,/area/tcommsat/computer) +"clU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/item/wrench,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plating,/area/tcommsat/computer) +"clV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/tcommsat/computer) +"clX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/tcommsat/computer) +"clY" = (/obj/item/beacon,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"clZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cma" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Telecommunications Maintenance"; req_access_txt = "61"},/turf/open/floor/plating,/area/tcommsat/computer) +"cmb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"cmc" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/tcommsat/computer) +"cmd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cme" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) +"cmf" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/radio,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmg" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Telecomms Admin"; departmentType = 5; name = "Telecomms RC"; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmh" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications Chamber"; req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmj" = (/obj/machinery/door/airlock/command/glass{name = "Control Room"; req_access_txt = "19; 61"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmk" = (/obj/machinery/power/apc{areastring = "/area/tcommsat/computer"; dir = 1; name = "Telecomms Monitoring APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cml" = (/obj/machinery/announcement_system,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmm" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/dark,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) +"cmr" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cms" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmt" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Port"; dir = 8; network = list("tcomms")},/turf/open/space,/area/space/nearstation) +"cmu" = (/obj/machinery/status_display/evac{pixel_x = -32},/obj/structure/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmv" = (/obj/machinery/computer/telecomms/monitor{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmw" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/engineering/glass{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) +"cmx" = (/obj/machinery/computer/telecomms/server{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmy" = (/obj/machinery/computer/message_monitor{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cmz" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Starboard"; dir = 4; network = list("tcomms")},/turf/open/space,/area/space/nearstation) +"cmB" = (/turf/closed/wall/r_wall,/area/tcommsat/server) +"cmF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) +"cmG" = (/obj/machinery/blackbox_recorder,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmH" = (/obj/machinery/telecomms/message_server,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmK" = (/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cmL" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmM" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmN" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmO" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmP" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmQ" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmR" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cmU" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cmV" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmW" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmX" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmY" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cmZ" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cna" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnb" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnc" = (/obj/machinery/power/terminal,/obj/machinery/ntnet_relay,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnd" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cne" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnj" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnk" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnl" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnm" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnn" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cno" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"cnp" = (/obj/machinery/camera/preset/toxins{c_tag = "Bomb Testing Asteroid Aft"; dir = 1},/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) +"cnq" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/asteroid/nearstation/bomb_site) +"cnr" = (/obj/structure/table,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cns" = (/obj/structure/table,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cnt" = (/obj/structure/table,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cnu" = (/obj/machinery/camera/motion{c_tag = "Telecomms Server Room"; dir = 1; network = list("tcomms")},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cnv" = (/obj/structure/table,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cnw" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/micro_laser,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cnx" = (/obj/structure/table,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/scanning_module,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"cny" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Port Aft"; network = list("tcomms")},/turf/open/space,/area/space/nearstation) +"cnz" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Starboard Aft"; network = list("tcomms")},/turf/open/space,/area/space/nearstation) +"cnC" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "AI Satellite turret control"; pixel_x = -5; pixel_y = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) +"cnD" = (/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) +"cnE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice,/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) +"cnG" = (/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAS) +"cnH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) +"cnJ" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/wardrobe/sec_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnN" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/camera{c_tag = "Brig Equipment Room"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnP" = (/obj/machinery/vending/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnQ" = (/obj/machinery/suit_storage_unit/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnT" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnV" = (/obj/structure/punching_bag,/turf/open/floor/plasteel/showroomfloor,/area/security/main) +"cnX" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cod" = (/obj/structure/table,/obj/item/clothing/under/color/grey,/obj/machinery/power/apc{dir = 1; name = "Dormitory APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) +"coe" = (/obj/machinery/power/apc{dir = 8; name = "Dormitory Maintenance APC"; pixel_x = -24},/obj/structure/cable,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"coi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"coj" = (/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"cok" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"col" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/dorms) +"com" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"con" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"coo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"cop" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitories"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"cor" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "public external airlock"},/turf/open/floor/plating,/area/storage/emergency/starboard) +"cos" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cot" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cou" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"coy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"coz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"coB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Central Primary Hallway Bridge"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"coF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/bar) +"coG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"coH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) +"coJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) +"coL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) +"coN" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"coV" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) +"coW" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"cpa" = (/obj/machinery/vending/boozeomat,/turf/closed/wall,/area/crew_quarters/bar) +"cpb" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/bottle/goldschlager{pixel_x = -8; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/vermouth{pixel_x = 3; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/whiskey{pixel_x = 7; pixel_y = 16},/obj/item/reagent_containers/food/drinks/bottle/kahlua{pixel_x = 9; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/absinthe{pixel_x = -5; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpc" = (/obj/machinery/chem_dispenser/drinks,/obj/structure/table,/obj/machinery/camera{c_tag = "Bar Drinks"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpe" = (/obj/machinery/door/airlock{name = "Bar Access"; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpg" = (/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = 26; req_access_txt = "28"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cph" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpk" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 19},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpl" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpm" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/pie/cream,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpn" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/spaghetti,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpo" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpq" = (/obj/machinery/deepfryer,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cps" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpt" = (/obj/item/beacon,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpu" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cpw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpx" = (/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/button/door{id = "kitchenshutters"; name = "Kitchen Shutters Control"; pixel_x = 5; pixel_y = -24; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -6; pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpz" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpA" = (/obj/structure/rack,/obj/item/reagent_containers/food/snacks/mint,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpB" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"cpC" = (/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/bar) +"cpH" = (/obj/effect/turf_decal/plaque{icon_state = "L1"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpI" = (/obj/effect/turf_decal/plaque{icon_state = "L3"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/plaque{icon_state = "L5"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpK" = (/obj/effect/turf_decal/plaque{icon_state = "L9"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpL" = (/obj/effect/turf_decal/plaque{icon_state = "L11"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpM" = (/obj/effect/turf_decal/plaque{icon_state = "L13"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L4"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/plaque{icon_state = "L6"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpQ" = (/obj/effect/turf_decal/plaque{icon_state = "L10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L12"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpT" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpU" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cpY" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cpZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqa" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqc" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqd" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqe" = (/obj/effect/turf_decal/plaque,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Med"; location = "Sci9"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqh" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cql" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division Hallway"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqy" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/maintenance/department/engine) +"cqz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqD" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqE" = (/obj/item/kirbyplants{icon_state = "plant-18"; layer = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqG" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cqH" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) +"cqS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/space/nearstation) +"cqU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) +"cqV" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chief_engineer,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cqW" = (/obj/structure/chair,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"cqX" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"crb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/chapel/office) +"cre" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"crg" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crh" = (/obj/machinery/button/crematorium{id = "foo"; pixel_x = 25},/obj/structure/bodycontainer/crematorium{id = "foo"},/turf/open/floor/plasteel/dark,/area/chapel/office) +"cri" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "secure storage"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/engine/engineering) +"crj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crk" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crl" = (/obj/structure/sign/warning/vacuum/external,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"crm" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space,/area/space/nearstation) +"crt" = (/obj/structure/table/wood/fancy,/obj/item/folder,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/chapel/office) +"cru" = (/obj/effect/decal/cleanable/blood/old,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crv" = (/turf/open/floor/plasteel/dark,/area/chapel/office) +"crx" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cry" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space,/area/space/nearstation) +"crz" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"crA" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"crB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"crC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"crD" = (/obj/structure/table/wood/fancy,/obj/item/storage/box/bodybags,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) +"crG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"crH" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crK" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Chapel Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crL" = (/obj/structure/chair/wood/normal,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) +"crM" = (/obj/structure/chair/wood/normal,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) +"crN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Chapel Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crO" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"crT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"crU" = (/obj/machinery/power/apc{dir = 4; name = "Chapel Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/chapel/office) +"crX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"crY" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/breadslice/plain,/obj/item/reagent_containers/food/snacks/breadslice/plain{pixel_y = 4},/obj/item/reagent_containers/food/snacks/breadslice/plain{pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csd" = (/turf/open/floor/carpet/black,/area/chapel/office) +"cse" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/carpet/black,/area/chapel/office) +"csf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"csg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"csh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"csi" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"csk" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/wine{pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csn" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; pixel_x = -32},/obj/structure/closet,/obj/item/storage/backpack/cultpack,/obj/item/clothing/head/nun_hood,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"cso" = (/obj/structure/table/wood,/obj/item/nullrod,/turf/open/floor/carpet/black,/area/chapel/office) +"csp" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet/black,/area/chapel/office) +"csq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"csr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"css" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"csu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"csv" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csy" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) +"csB" = (/obj/effect/landmark/start/chaplain,/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet/black,/area/chapel/office) +"csC" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/holywater{pixel_x = -2; pixel_y = 2},/turf/open/floor/carpet/black,/area/chapel/office) +"csE" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"csF" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"csG" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"csM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Chapel Office Tunnel"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) +"csN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Starboard Access"; network = list("ss13","monastery")},/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"csU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/chapel/main/monastery) +"csY" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/newscaster{pixel_x = -32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"cta" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"cte" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) +"ctg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cth" = (/obj/structure/table/wood/fancy,/obj/item/storage/fancy/candle_box,/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctu" = (/obj/machinery/light/small,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) +"ctJ" = (/obj/machinery/camera{c_tag = "Chapel Office"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/office) +"ctK" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctL" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctM" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Monastery Cloister Fore"; network = list("ss13","monastery")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"ctQ" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/main/monastery) +"ctS" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation) +"ctX" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/turf/open/floor/carpet,/area/chapel/office) +"cuc" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Xenobiology Central"; dir = 1; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cui" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"cuk" = (/obj/structure/closet{name = "beekeeping wardrobe"},/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/head/beekeeper_head,/obj/item/clothing/head/beekeeper_head,/obj/item/clothing/head/beekeeper_head,/obj/item/melee/flyswatter,/obj/item/melee/flyswatter,/obj/item/melee/flyswatter,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cul" = (/obj/machinery/chem_master/condimaster,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cum" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cun" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light/small{dir = 1},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuo" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cup" = (/obj/machinery/hydroponics/soil,/obj/machinery/light/small{dir = 1},/obj/item/seeds/watermelon/holy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cus" = (/obj/structure/closet{name = "beekeeping supplies"},/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cut" = (/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuu" = (/obj/item/storage/bag/plants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/storage/bag/plants/portaseeder,/obj/item/storage/bag/plants/portaseeder,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuv" = (/obj/structure/chair/wood/normal{dir = 4},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuw" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cux" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/mug/tea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuy" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Monastery Cloister Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuA" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/beebox,/obj/item/queen_bee/bought,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuB" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuE" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/carrot,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuG" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuH" = (/obj/item/hatchet,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuI" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuJ" = (/obj/item/shovel/spade,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuK" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Monastery Dining Room"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuM" = (/obj/machinery/power/apc{dir = 8; name = "Garden APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/light/small{dir = 8},/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuO" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/sugarcane,/obj/machinery/light/small{dir = 4},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cuP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) +"cuR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cuS" = (/obj/machinery/door/airlock{name = "Kitchen"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuU" = (/obj/machinery/door/airlock{name = "Dining Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuV" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuW" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuX" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock{name = "Garden"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuY" = (/obj/machinery/door/airlock{name = "Garden"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cuZ" = (/obj/item/wrench,/turf/open/floor/plasteel,/area/chapel/main/monastery) +"cvb" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/wheat,/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvd" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cve" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvf" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"cvg" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvh" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/poppy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvi" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvj" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light/small,/turf/open/floor/grass,/area/hydroponics/garden/monastery) +"cvk" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/camera{c_tag = "Monastery Cloister Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvq" = (/obj/machinery/camera{c_tag = "Monastery Secondary Dock"; dir = 8; network = list("ss13","monastery")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastleft{dir = 1; name = "Coffin Storage"; req_one_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvs" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Coffin Storage"; req_one_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvA" = (/obj/machinery/door/airlock/external{name = "Dock Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvB" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvC" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvE" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvH" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvI" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Monastery Cloister Aft"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvJ" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvR" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/machinery/camera{c_tag = "Monastery Cemetary"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvS" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvT" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/chapel/main/monastery) +"cvV" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cvX" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"cvY" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"cvZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"cwa" = (/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) +"cwc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Monastery Maintenance"; req_one_access_txt = "22;24;10;11;37"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwe" = (/turf/closed/wall/mineral/iron,/area/library/lounge) +"cwg" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) +"cwj" = (/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 8},/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main/monastery) +"cwl" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/storage/fancy/candle_box,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwn" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/storage/toolbox/mechanical,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwo" = (/obj/machinery/power/apc{dir = 1; name = "Monastery Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwr" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Library Lounge APC"; pixel_x = 24},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cww" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwx" = (/obj/structure/table/wood/fancy,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/chapel/main/monastery) +"cwy" = (/obj/structure/table/wood/fancy,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/candle,/obj/item/candle{pixel_x = 6; pixel_y = 8},/obj/item/candle{pixel_x = -8; pixel_y = 6},/turf/open/floor/carpet,/area/chapel/main/monastery) +"cwz" = (/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwA" = (/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwE" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwF" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwG" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/massdriver{id = "chapelgun"; pixel_x = 28},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/library/lounge) +"cwM" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space,/area/space/nearstation) +"cwO" = (/obj/item/flashlight/lantern,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"cwR" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"cwS" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"cwU" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"cxe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) +"cxg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/space/basic,/area/space/nearstation) +"cxh" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"cxk" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) +"cxn" = (/obj/machinery/newscaster{pixel_x = -32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) +"cxt" = (/obj/effect/turf_decal/box/corners{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"cxz" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/library/lounge) +"cxC" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxD" = (/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/library/lounge) +"cxJ" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/library/lounge) +"cxK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxL" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxM" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library/lounge) +"cxX" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Monastery Archives Access Tunnel"; dir = 4; network = list("ss13","monastery")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cxY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cyl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cym" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cyy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/library/lounge) +"cyz" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cyA" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"cyB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/library/lounge) +"cyL" = (/obj/structure/lattice,/obj/structure/lattice,/turf/closed/mineral,/area/chapel/asteroid/monastery) +"cyM" = (/obj/structure/lattice,/turf/closed/mineral,/area/chapel/asteroid/monastery) +"cyP" = (/obj/structure/bookcase/random/nonfiction,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"cyQ" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/camera{c_tag = "Monastery Archives Fore"; network = list("ss13","monastery")},/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/plasteel/dark,/area/library) +"cyR" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/library) +"cyS" = (/obj/structure/bookcase/random/religion,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"cyT" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/plasteel/dark,/area/library) +"cyU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/library) +"cyY" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cyZ" = (/obj/structure/displaycase/trophy,/turf/open/floor/plasteel/dark,/area/library) +"czl" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/library) +"czo" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/dark,/area/library) +"czp" = (/obj/structure/table/wood,/obj/item/disk/nuclear/fake,/obj/item/barcodescanner,/turf/open/floor/plasteel/dark,/area/library) +"czq" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/library) +"czr" = (/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/library) +"czt" = (/obj/structure/table/wood/fancy,/obj/item/storage/photo_album,/turf/open/floor/carpet,/area/library) +"czu" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/library) +"czv" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"czw" = (/obj/machinery/newscaster{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/library) +"czB" = (/obj/structure/table/wood/fancy,/obj/item/storage/fancy/candle_box,/turf/open/floor/carpet,/area/library) +"czC" = (/obj/structure/table/wood/fancy,/obj/item/flashlight/lantern{icon_state = "lantern-on"; pixel_y = 8},/turf/open/floor/carpet,/area/library) +"czD" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/library) +"czH" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Monastery Archives Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) +"czI" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/carpet,/area/library) +"czL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/library) +"czM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/library) +"czN" = (/obj/structure/table/wood,/obj/item/storage/bag/books,/turf/open/floor/plasteel/dark,/area/library) +"czO" = (/obj/structure/table/wood,/obj/item/instrument/saxophone,/turf/open/floor/plasteel/dark,/area/library) +"czP" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/coin/gold,/turf/open/floor/plasteel/dark,/area/library) +"czQ" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Monastery Archives Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) +"czV" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"czW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"czY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"czZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"cAg" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/door/window/northright{base_state = "left"; dir = 2; icon_state = "left"; name = "Curator Desk Door"; req_access_txt = "37"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAs" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-05"; pixel_y = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAt" = (/obj/structure/table/wood,/obj/item/flashlight/lantern{pixel_y = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAu" = (/obj/structure/table/wood,/obj/item/clothing/head/pharaoh,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAv" = (/obj/structure/table/wood,/obj/item/camera,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAy" = (/obj/machinery/light/small{dir = 4},/obj/machinery/door/window/northright{dir = 2; name = "Curator Desk Door"; req_access_txt = "37"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAB" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"cAC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/wood/wings{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"cAD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/wood/wings{dir = 1},/obj/effect/landmark/start/librarian,/turf/open/floor/plasteel/dark,/area/library) +"cAH" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/library) +"cAJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/library) +"cAK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/library) +"cAM" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library) +"cAQ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"cAS" = (/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/plasteel/dark,/area/library) +"cAT" = (/obj/structure/destructible/cult/tome,/turf/open/floor/plasteel/dark,/area/library) +"cAU" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi'; icon_state = "minibar"; name = "skeletal minibar"},/obj/item/book/codex_gigas,/obj/machinery/camera{c_tag = "Monastery Archives Aft"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) +"cAV" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/plasteel/dark,/area/library) +"cBi" = (/obj/machinery/flasher/portable,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/armory) +"cBk" = (/obj/machinery/vending/boozeomat/pubby_maint,/turf/closed/wall,/area/maintenance/department/crew_quarters/dorms) +"cBl" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBm" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"cBn" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) +"cBo" = (/obj/structure/table,/obj/item/lighter,/obj/structure/light_construct/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBp" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/bottle/gin{pixel_y = 8},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBq" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBr" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"cBs" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"cBv" = (/obj/item/cigbutt/roach,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"cBw" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) +"cBx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/button/door{id = "supplybridge"; name = "Space Bridge Control"; pixel_y = 27},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/button/door{id = "supplybridge"; name = "Space Bridge Control"; pixel_y = 27},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"cBA" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) +"cBB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"cBK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"cBL" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_one_access_txt = "12;45;5;9"},/turf/open/floor/plating,/area/maintenance/department/engine) +"cBM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/office) +"cBR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"cBS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/engine/engineering) +"cBT" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) +"cBU" = (/turf/closed/wall/r_wall,/area/gateway) +"cCl" = (/turf/closed/wall/r_wall,/area/science/lab) +"cCt" = (/turf/open/floor/plasteel/white,/area/science/lab) +"cCB" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"cCF" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"cCH" = (/obj/effect/turf_decal/bot/left,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"cCI" = (/obj/machinery/status_display/ai,/turf/closed/wall/r_wall,/area/engine/supermatter) +"cCP" = (/obj/effect/turf_decal/bot/right,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) +"cCR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/maintenance/department/chapel/monastery) +"cCS" = (/obj/machinery/rnd/production/techfab/department/security,/turf/open/floor/plasteel/dark,/area/security/main) +"cCT" = (/obj/machinery/rnd/production/techfab/department/cargo,/turf/open/floor/plasteel,/area/quartermaster/storage) +"cCU" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/tcomms{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/engineering_guide,/turf/open/floor/plasteel,/area/engine/engineering) +"cCV" = (/obj/machinery/rnd/production/protolathe/department/engineering,/turf/open/floor/plasteel,/area/engine/engineering) +"cCW" = (/obj/machinery/vending/games,/turf/open/floor/plasteel/dark,/area/library) +"cCX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"cCY" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"cCZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"cDa" = (/turf/closed/wall,/area/quartermaster/warehouse) +"cDB" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"cFB" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space) +"cHS" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Firing Range"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"cJo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"cKA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"cKV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cLw" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/engine/engineering) +"cOp" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/turf/open/floor/plasteel,/area/science/xenobiology) +"cPy" = (/obj/machinery/atmospherics/components/binary/pump,/obj/structure/sign/warning/nosmoking{pixel_x = -32; pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cPO" = (/obj/item/chair/stool,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) +"cPT" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/window/reinforced,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cSJ" = (/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = -2; pixel_y = 9},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 5; pixel_y = 9},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = -3; pixel_y = 1},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 6; pixel_y = 2},/obj/item/reagent_containers/syringe/epinephrine{pixel_x = 3; pixel_y = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{areastring = "/area/medical/sleeper"; dir = 4; name = "Treatment Center APC"; pixel_x = 24},/obj/structure/cable,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"cSK" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Research Division Delivery"; req_access_txt = "47"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 8; freq = 1400; location = "Research Division"},/turf/open/floor/plasteel/dark,/area/science/lab) +"cXW" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"cZt" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/structure/window/plasma/reinforced{dir = 8},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) +"daY" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) +"dbi" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"dci" = (/obj/structure/rack,/obj/item/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"dcL" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"deJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/gps/mining{gpstag = "MINE_PUB"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"dgg" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"dgj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) +"dgz" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"dgI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"dhz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair{dir = 8; name = "Defense"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"dir" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"dkR" = (/obj/effect/turf_decal/box/corners{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"dmP" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/department/science) +"dmT" = (/obj/machinery/shieldwallgen/xenobiologyaccess,/obj/structure/cable{icon_state = "0-8"},/obj/structure/sign/warning/electricshock{pixel_x = 32},/turf/open/floor/plating,/area/science/xenobiology) +"dnS" = (/obj/machinery/atmospherics/components/binary/pump{name = "Mix Bypass"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"doo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"dpa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"dpb" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/chapel/office) +"dpc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) +"dps" = (/obj/machinery/status_display/ai,/turf/closed/wall,/area/quartermaster/qm) +"dqw" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/science) +"dqG" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"dqY" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"dse" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"dsv" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plating,/area/maintenance/department/cargo) +"dsz" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"dtm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"duF" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/large{pixel_x = 1; pixel_y = 5},/obj/item/reagent_containers/glass/beaker{pixel_x = -2},/obj/item/reagent_containers/glass/beaker{pixel_x = 2; pixel_y = -6},/turf/open/floor/plasteel/dark,/area/science/lab) +"duQ" = (/obj/machinery/camera{c_tag = "Departure Lounge Aft"; dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"dxc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"dye" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/structure/sign/departments/science{pixel_y = 32},/obj/item/kitchen/knife,/turf/open/floor/plating,/area/maintenance/department/engine) +"dym" = (/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) +"dAF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/science/mixing) +"dAG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/machinery/meter,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"dEy" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/reflector/double/anchored{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"dFJ" = (/turf/open/floor/engine,/area/engine/supermatter) +"dHr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/button/door{id = "engsm"; name = "Radiation Shutters Control"; pixel_y = 24; req_access_txt = "10"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"dHZ" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chemist,/obj/machinery/button/door{id = "chemistry_shutters"; name = "Shutters Control"; pixel_x = 26; pixel_y = 4; req_access_txt = "5; 33"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"dJk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating,/area/engine/atmos) +"dJm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Pit"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/engine) +"dKs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"dLY" = (/obj/structure/table,/obj/item/assembly/igniter,/turf/open/floor/plating,/area/maintenance/department/cargo) +"dMB" = (/turf/open/floor/plasteel,/area/quartermaster/sorting) +"dMG" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"dMI" = (/obj/item/clothing/suit/apron/surgical,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"dMO" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) +"dNr" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/sign/warning{pixel_y = -32},/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/maintenance/department/engine) +"dSp" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{dir = 1},/turf/open/floor/plating/airless,/area/engine/engineering) +"dSr" = (/obj/item/chair,/turf/open/floor/wood,/area/maintenance/department/engine) +"dTV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"dVI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/item/wrench,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/execution/transfer) +"dVJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) +"dWk" = (/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) +"dWp" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) +"dYe" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/security/prison) +"dZj" = (/obj/machinery/atmospherics/pipe/manifold/green/visible,/obj/machinery/airalarm/engine{pixel_y = 22},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) +"eaw" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"ebD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters"; name = "law office shutters"},/turf/open/floor/plating,/area/lawoffice) +"edl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/science/explab) +"edJ" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"eex" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/office) +"eeQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/office) +"efu" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/dark,/area/science/explab) +"efU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"egK" = (/obj/structure/girder,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"ehM" = (/obj/effect/decal/remains/human,/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"eiV" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"ekU" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"elk" = (/obj/structure/chair/office/dark,/turf/open/floor/wood,/area/lawoffice) +"epj" = (/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"epJ" = (/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"epV" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/engine/engineering) +"eqD" = (/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/department/crew_quarters/dorms) +"eta" = (/obj/machinery/door/airlock/engineering{name = "Engineering Supplies"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"euQ" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"eyj" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) +"ezF" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/red,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ezJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"eAp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"eAH" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) +"eAZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"eCw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"eCK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"eDC" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"eEp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/lawoffice) +"eFj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"eFG" = (/obj/machinery/mineral/stacking_unit_console{machinedir = 8; pixel_x = -32; pixel_y = 32},/obj/machinery/conveyor{dir = 4; id = "garbagestacked"},/turf/open/floor/plating,/area/maintenance/disposal) +"eHI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"eIL" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"eLt" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"eMC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"eNc" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/rack,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"eNq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/explab) +"eNF" = (/obj/structure/grille,/obj/structure/lattice,/turf/closed/wall,/area/space/nearstation) +"eOZ" = (/obj/structure/closet,/obj/item/clothing/suit/judgerobe,/obj/item/gavelblock,/obj/item/gavelhammer,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ePU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/security/brig) +"eQN" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) +"eQR" = (/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,/turf/open/floor/engine,/area/science/xenobiology) +"eQZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"eRp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"eSB" = (/obj/machinery/computer/cryopod{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/security/prison) +"eSL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/beacon,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"eVy" = (/obj/effect/turf_decal/arrows{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"eWi" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engineering) +"eXo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/engine,/area/science/explab) +"eYr" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"eZA" = (/obj/item/stack/cable_coil/cut/random,/turf/open/floor/plating,/area/maintenance/department/cargo) +"fdQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"fdS" = (/obj/machinery/door/window/southleft{dir = 4; name = "Engineering Delivery"; req_access_txt = "10"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Engineering"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"fef" = (/obj/machinery/door/airlock/maintenance{name = "Menagerie"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"ffJ" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"fgS" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/mob/living/simple_animal/opossum/poppy,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) +"fhM" = (/obj/item/storage/secure/safe{pixel_x = -22},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"fjs" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"fjD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/supermatter) +"fkH" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light,/obj/machinery/camera{c_tag = "Experimentation Lab Testing Zone"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/explab) +"fmh" = (/turf/open/floor/wood,/area/maintenance/department/engine) +"fmL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"fmU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"fon" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) +"fow" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) +"fpT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"frj" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/engineering) +"ftp" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"ftW" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"fuP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/wood,/area/lawoffice) +"fvb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"fwe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"fwl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"fwr" = (/obj/machinery/door/airlock/maintenance/abandoned,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/science) +"fwI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"fxC" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) +"fym" = (/obj/machinery/door/airlock/engineering/glass/critical{heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) +"fyF" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/window/plasma/reinforced{dir = 8},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) +"fyO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter) +"fzu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/gloves/color/black,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"fAx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"fBt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"fBz" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/mixing) +"fBZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/engine,/area/engine/supermatter) +"fFv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"fIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) +"fIN" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"fIT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/main/monastery) +"fKj" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Mineral Room"},/turf/open/floor/plating,/area/maintenance/department/science) +"fLG" = (/obj/effect/decal/remains/xeno,/turf/open/floor/plating,/area/maintenance/department/engine) +"fNv" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) +"fQf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"fRr" = (/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"fRs" = (/turf/closed/wall,/area/crew_quarters/heads/hor) +"fTY" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"fUA" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"fWv" = (/obj/structure/bookcase/random/religion,/turf/open/floor/plasteel/dark,/area/library/lounge) +"fZK" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"gam" = (/obj/machinery/door/airlock/medical/glass{name = "Service Door"; req_one_access_txt = "35;28"},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) +"gdJ" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"gdL" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"geU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"gfi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"ggg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"giI" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/office) +"giO" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gjp" = (/obj/structure/table/wood,/obj/structure/bedsheetbin,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"gjq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gjv" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Space Loop In"},/turf/open/floor/plating,/area/maintenance/department/science) +"gjN" = (/obj/item/weldingtool,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gkR" = (/obj/item/kirbyplants/random,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"gkS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"gkX" = (/obj/machinery/door/airlock/maintenance{name = "Storage"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"glf" = (/obj/structure/closet/emcloset,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"gmp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/science) +"gmO" = (/obj/structure/chair{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"gmZ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Atmospherics External Access"; req_access_txt = "24"},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) +"gna" = (/turf/open/floor/plasteel/stairs/medium,/area/maintenance/department/crew_quarters/dorms) +"gnq" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/engine/engineering) +"gpC" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"gpI" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"gue" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gvf" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) +"gwn" = (/obj/structure/sign/warning{pixel_y = 32},/obj/structure/sign/warning{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gxe" = (/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/structure/light_construct/small{dir = 8},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"gxq" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"gxK" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) +"gAG" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/turf/open/floor/carpet,/area/lawoffice) +"gBb" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"gDR" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Escape"; dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"gDZ" = (/obj/effect/turf_decal/box/corners{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"gEo" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"gFo" = (/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28; pixel_y = 3},/obj/machinery/button/door{id = "research_shutters_2"; name = "Shutters Control Button"; pixel_x = -28; pixel_y = -7; req_access_txt = "47"},/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/obj/item/wrench,/obj/item/crowbar,/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/dark,/area/science/lab) +"gGy" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gGA" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"gHZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/engine) +"gIC" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) +"gIG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"gKz" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-22"; pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"gKG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"gLF" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"gMm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/science/mixing) +"gMO" = (/obj/structure/plasticflaps/opaque,/turf/open/floor/plating,/area/maintenance/department/engine) +"gNv" = (/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plasteel/stairs/right,/area/maintenance/department/crew_quarters/dorms) +"gNG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/door{id = "assistantshutters"; name = "Tool Storage Shutters Control"; pixel_y = 24; req_access_txt = "10"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"gPV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood,/area/lawoffice) +"gQf" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/engine/engineering) +"gQo" = (/obj/machinery/vending/wardrobe/det_wardrobe,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"gSH" = (/turf/closed/wall,/area/lawoffice) +"gSI" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"gUb" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) +"gVc" = (/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/engine) +"gXg" = (/obj/item/extinguisher,/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/department/science) +"gXZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 4; network = list("ss13","engine")},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"gYo" = (/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) +"haA" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/clothing/glasses/welding,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"hbl" = (/obj/machinery/door/poddoor/incinerator_atmos_main,/turf/open/floor/engine/vacuum,/area/space) +"heC" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Science Maintenance APC"; pixel_x = -25},/obj/structure/cable,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"hfZ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 32; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"hgD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/department/science) +"hiw" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"hiY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci4"; location = "Sci3"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"hjk" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"hjD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"hka" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/camera{c_tag = "Atmospherics Console"; dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"hkQ" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"hnu" = (/obj/machinery/button/door{id = "lawyer_shutters"; name = "law office shutters control"; pixel_x = 34; pixel_y = -1; req_access_txt = "38"},/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/wood,/area/lawoffice) +"hon" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Gas to Filter"},/turf/open/floor/engine,/area/engine/engineering) +"hoS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/engine,/area/engine/engineering) +"hqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "assistantshutters"; name = "Tool Storage Shutters Control"; pixel_y = 24; req_access_txt = "10"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"hvW" = (/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) +"hwd" = (/obj/machinery/camera{c_tag = "Departure Lounge Port"; dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"hwj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/security/execution/transfer) +"hxn" = (/obj/structure/chair,/obj/item/clothing/glasses/regular,/turf/open/floor/plating,/area/maintenance/department/science) +"hxI" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"hyh" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"hzc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/wrench,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/engine) +"hzd" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/port) +"hDG" = (/obj/machinery/door/airlock/engineering{name = "Auxillary Base Construction"; req_one_access_txt = "32;47;48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"hEX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"hFp" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/chair,/obj/item/reagent_containers/blood/random,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"hFy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"hGB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"hHr" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"hIZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"hKp" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/window/plasma/reinforced{dir = 4},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) +"hMx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"hOx" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"hOz" = (/obj/item/weldingtool,/turf/open/floor/plating,/area/maintenance/department/cargo) +"hPN" = (/obj/structure/table/glass,/obj/item/clothing/glasses/science,/obj/machinery/button/door{id = "xenobiomain"; name = "Containment Blast Doors"; pixel_x = 28; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"hPU" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/surgical_drapes,/obj/item/clothing/mask/surgical,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"hQz" = (/obj/structure/closet/emcloset/anchored,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) +"hQC" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"hSt" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Gas to Cooling Loop"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"hSC" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"hSM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Starboard Solar Access"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"hTl" = (/obj/structure/sink{dir = 4; pixel_x = 12},/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/maintenance/department/science) +"hUt" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"hUw" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/engineering) +"hUJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"hVx" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"hXt" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/science) +"hXK" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"hYe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"hZB" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"iab" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"ick" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/library) +"iej" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"igB" = (/obj/machinery/camera{c_tag = "Turbine Chamber"; network = list("turbine")},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) +"igE" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio4"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) +"ihj" = (/obj/item/clothing/suit/toggle/labcoat/science,/turf/open/floor/plating,/area/maintenance/department/engine) +"ihk" = (/obj/structure/chair/office/light,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"ijF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library) +"ijU" = (/obj/effect/spawner/lootdrop/organ_spawner,/obj/structure/closet/crate,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"ikB" = (/obj/structure/closet/secure_closet/medical2,/turf/open/floor/plating,/area/maintenance/department/science) +"ikO" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"ilD" = (/obj/machinery/processor/slime,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"ilE" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"imE" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"ioj" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light{light_color = "#e8eaff"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"iop" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"ioF" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"iqc" = (/turf/open/floor/plasteel/stairs/right,/area/maintenance/department/crew_quarters/dorms) +"irM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"itl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/xenobio{pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"iuM" = (/obj/machinery/door/window/southleft{dir = 8; name = "Test Chamber"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ivO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/simple_animal/bot/secbot{arrest_type = 1; health = 45; icon_state = "secbot1"; idcheck = 1; name = "Sergeant-at-Armsky"; weaponscheck = 1},/turf/open/floor/plasteel/dark,/area/security/armory) +"iwe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"iyg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/electricshock{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/engine) +"iyJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"izB" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/dorms) +"izF" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"iAx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) +"iBJ" = (/obj/machinery/camera{c_tag = "Telecomms External Fore"; dir = 1; network = list("tcomms"); start_active = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) +"iCe" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/turf/open/floor/plating,/area/maintenance/department/cargo) +"iCs" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"iCV" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/security/execution/transfer) +"iEQ" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/engine) +"iEU" = (/obj/effect/spawner/lootdrop/keg,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"iFI" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/engine/engineering) +"iGJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) +"iJi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"iKb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting) +"iLh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) +"iLl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"iLR" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/window/reinforced,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"iPj" = (/obj/machinery/igniter{id = "xenoigniter"; luminosity = 2},/turf/open/floor/engine,/area/science/xenobiology) +"iPz" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology Test Lab"; dir = 4; network = list("xeno","rd")},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"iPH" = (/obj/machinery/vr_sleeper{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"iPO" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"iPU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/execution/transfer) +"iSz" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"iTF" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/engine/supermatter) +"iVJ" = (/obj/effect/spawner/lootdrop/organ_spawner,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"iWV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) +"iXx" = (/obj/machinery/light/small,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"jcT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"jen" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"jeq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"jgr" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library) +"jhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"jhD" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"jjC" = (/obj/structure/rack,/obj/item/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/turf/open/floor/wood,/area/lawoffice) +"jrG" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/requests_console{department = "Engineering"; departmentType = 4; name = "Engineering RC"; pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/machinery/shower{dir = 4; name = "emergency shower"},/turf/open/floor/plasteel,/area/engine/engineering) +"jsf" = (/obj/item/toy/katana,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"jsj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/sleeper) +"jsD" = (/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/chapel/office) +"jtf" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"juw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/armory) +"jvi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) +"jwe" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"jxl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"jxK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"jzz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/entry) +"jzE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"jAy" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"jBh" = (/obj/structure/rack,/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plating,/area/maintenance/department/cargo) +"jBn" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"jCv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"jDA" = (/obj/item/chair,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"jEX" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/science) +"jFw" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) +"jFO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) +"jHP" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{pixel_x = 6; pixel_y = 10},/obj/item/reagent_containers/food/drinks/bottle/tequila{pixel_x = -6; pixel_y = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"jOB" = (/turf/open/floor/plating,/area/storage/emergency/starboard) +"jPf" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/item/kitchen/knife,/turf/open/floor/plasteel,/area/maintenance/department/engine) +"jQh" = (/obj/item/stack/sheet/animalhide/xeno,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) +"jRG" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) +"jSa" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/chapel/main/monastery) +"jTh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"jTu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/carpet,/area/lawoffice) +"jTU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"jUV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"jXh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) +"jXA" = (/obj/structure/table,/obj/item/stack/ore/iron,/turf/open/floor/plating,/area/maintenance/department/science) +"jXF" = (/obj/machinery/cryopod{dir = 1},/turf/open/floor/plasteel/dark,/area/security/prison) +"jXV" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"jYe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"jYh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Supply to Virology"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) +"jZG" = (/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/chemistry) +"kas" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) +"kaR" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"kfh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/science/mixing) +"kfM" = (/obj/structure/closet,/obj/machinery/light/small,/obj/item/storage/book/bible,/obj/item/storage/book/bible,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/chapel/office) +"kgR" = (/obj/structure/toilet/secret/low_loot{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"khk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"kjK" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) +"kkk" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) +"kkQ" = (/obj/machinery/vending/cola/pwr_game,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"klb" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/sorting) +"klo" = (/obj/structure/dresser,/obj/structure/mirror{pixel_y = 30},/turf/open/floor/plating,/area/maintenance/department/engine) +"klB" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"klV" = (/obj/item/clothing/under/rank/civilian/clown/sexy,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"kmd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"kmn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) +"koz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"kpK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) +"krU" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/engine) +"ksf" = (/obj/item/stack/tile/carpet,/obj/structure/sign/warning{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/department/engine) +"kvj" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"kwm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"kxj" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/carpet,/area/lawoffice) +"kxs" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"kyv" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"kAa" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"kDf" = (/obj/machinery/light/small,/turf/open/floor/carpet/black,/area/chapel/office) +"kDJ" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel,/area/engine/engineering) +"kDY" = (/obj/item/shard{icon_state = "small"},/turf/open/floor/wood,/area/maintenance/department/engine) +"kEM" = (/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"kEW" = (/obj/machinery/smartfridge/disks{pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel,/area/hydroponics) +"kFm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/tcommsat/computer) +"kFu" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"kFx" = (/obj/machinery/door/airlock/maintenance{name = "Law Office Maintenance"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"kFD" = (/obj/structure/closet/l3closet,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -27},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"kGe" = (/obj/structure/transit_tube/horizontal,/obj/structure/sign/departments/holy{pixel_x = -32},/turf/open/floor/plating,/area/hallway/secondary/entry) +"kIo" = (/obj/structure/table,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/plating,/area/maintenance/department/cargo) +"kIO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"kJo" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"kJw" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Firing Range Target"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"kKI" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/department/cargo) +"kNf" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #4"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"kPi" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"kQy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"kQZ" = (/obj/structure/closet,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c10,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"kRq" = (/turf/open/floor/plasteel,/area/maintenance/department/engine) +"kRK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/bz,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"kSb" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space) +"kSF" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"kSO" = (/obj/machinery/door/airlock/maintenance{name = "Port Emergency Storage"},/turf/open/floor/plating,/area/storage/emergency/port) +"kTj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"kTR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"kWQ" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"kXx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) +"kYM" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"lcU" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lcZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/gateway) +"ldQ" = (/obj/structure/floodlight_frame,/turf/open/floor/plating,/area/maintenance/department/science) +"lem" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/flasher{id = "executionflash"; pixel_y = 25},/obj/machinery/igniter{id = "secigniter"},/turf/open/floor/plating,/area/security/execution/transfer) +"lfx" = (/obj/structure/table,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"lhA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"liR" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"lje" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"lms" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/department/engine) +"lnn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"lnr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/engine/engineering) +"loz" = (/obj/structure/closet/radiation,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"loL" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4; filter_type = "n2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"lqc" = (/obj/item/toy/gun,/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lqy" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) +"lrM" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"lxI" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/chapel/monastery) +"lzJ" = (/obj/structure/closet/crate/bin,/turf/open/floor/carpet,/area/chapel/office) +"lAf" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) +"lAs" = (/turf/closed/wall,/area/quartermaster/sorting) +"lAR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"lBP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"lEn" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) +"lFh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"lGp" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel/dark,/area/security/prison) +"lGv" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"lGS" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"lHc" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lHX" = (/obj/structure/bed,/obj/item/bedsheet/orange,/turf/open/floor/plating,/area/maintenance/department/engine) +"lIr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/engine) +"lJr" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/science) +"lJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"lKL" = (/obj/machinery/door/airlock/abandoned{name = "Starboard Emergency Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/emergency/starboard) +"lMU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lNW" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/science) +"lQn" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"lQQ" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"lQX" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"lTC" = (/obj/item/shard,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/engine) +"lUO" = (/obj/structure/sign/warning/radiation,/turf/closed/wall/r_wall,/area/engine/supermatter) +"lWy" = (/turf/open/floor/plating,/area/maintenance/department/science) +"lWH" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/rack,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/suit/hooded/wintercoat,/turf/open/floor/plasteel,/area/science/xenobiology) +"lWJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) +"lXb" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Gas to Mix"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"lXc" = (/obj/structure/table,/obj/item/clothing/head/beret,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"lXJ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"mal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"mau" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) +"maW" = (/obj/structure/table/glass,/obj/item/weldingtool/mini,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"mbe" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/vending/wardrobe/engi_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"mci" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/engine/engineering) +"mdL" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen{layer = 3.1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"meF" = (/obj/machinery/status_display/evac,/turf/closed/wall/r_wall,/area/engine/supermatter) +"mfC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"mgz" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"mhl" = (/obj/machinery/power/emitter,/obj/machinery/light{dir = 8},/turf/open/floor/plating,/area/engine/engineering) +"mhn" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/random{pixel_x = 32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"mhK" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/open/space/basic,/area/space/nearstation) +"miw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 1; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/engine/engineering) +"mjn" = (/obj/machinery/jukebox,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"mjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/engineering) +"mlr" = (/obj/structure/lattice,/obj/structure/disposalpipe/junction{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"mmv" = (/obj/machinery/door/airlock/engineering{name = "Engineering Supplies"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"mnG" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"mpd" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/window/plasma/reinforced{dir = 4},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) +"mpy" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/blue,/turf/open/floor/wood,/area/lawoffice) +"mql" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"mqp" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"msX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/execution/transfer) +"mtu" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/reagent_containers/food/snacks/donut,/obj/machinery/light/small{dir = 4},/turf/closed/wall,/area/maintenance/department/security/brig) +"mtI" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Xenobiology APC"; pixel_x = -25},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"mvm" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Starboard Solar APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"mwg" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/ammo_box/foambox,/obj/item/ammo_box/foambox,/obj/item/gun/ballistic/shotgun/toy,/obj/item/gun/ballistic/shotgun/toy,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"mwG" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"mxy" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/tcommsat/computer) +"myu" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"mzl" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating,/area/security/execution/transfer) +"mzE" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) +"mzU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/department/engine) +"mCe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/turf/open/floor/plating,/area/security/checkpoint/engineering) +"mDW" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) +"mEu" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"mES" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Surgical Room"},/turf/open/floor/plating,/area/maintenance/department/science) +"mHy" = (/obj/item/storage/fancy/cigarettes/cigpack_shadyjims,/turf/open/floor/wood,/area/maintenance/department/engine) +"mIa" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"mJp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/space/basic,/area/space/nearstation) +"mKc" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/plasteel/dark,/area/library/lounge) +"mKk" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating/airless,/area/space/nearstation) +"mLB" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/security/brig) +"mMz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"mQm" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"mSc" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/science) +"mTS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"mVM" = (/turf/open/floor/plating/airless,/area/space/nearstation) +"mXq" = (/obj/item/taperecorder,/obj/item/cartridge/lawyer,/obj/structure/table/wood,/turf/open/floor/wood,/area/lawoffice) +"mZE" = (/turf/open/space/basic,/area/space/nearstation) +"naq" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) +"naS" = (/obj/effect/landmark/start/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"nbu" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/space) +"ncm" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"ndI" = (/obj/item/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"nev" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) +"new" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"nfi" = (/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"nfz" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"nge" = (/obj/structure/grille/broken,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) +"ngp" = (/obj/item/chair/stool,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"nih" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/costume,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"niy" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/cookie,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"nku" = (/obj/machinery/door/airlock/centcom{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"nnh" = (/obj/structure/chair{dir = 8},/obj/item/stack/spacecash/c10,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"noC" = (/obj/machinery/vending/kink,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"noM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) +"npE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"nqu" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"nqV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"nsy" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods/fifty,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/power/apc{areastring = "/area/construction/mining/aux_base"; dir = 8; name = "Auxillary Base Construction APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"nsD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/science/mixing) +"nsJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"ntj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"nuv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"nxT" = (/obj/machinery/smartfridge/extract/preloaded,/turf/open/floor/plasteel,/area/science/xenobiology) +"nyB" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/central) +"nyO" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"nzD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/science) +"nAs" = (/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"nAY" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"nBw" = (/obj/machinery/computer/crew{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) +"nBL" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"nDo" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/department/engine) +"nDx" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"nEb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"nGi" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"nIm" = (/obj/machinery/computer/security/telescreen{dir = 8; name = "Test Chamber Monitor"; network = list("xeno"); pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/science/xenobiology) +"nIU" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"nJI" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/sign/plaques/kiddie/perfect_drone{pixel_y = 32},/turf/open/floor/engine,/area/science/explab) +"nKo" = (/obj/structure/lattice,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"nLl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) +"nMG" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/camera/motion{c_tag = "Telecomms Monitoring"; network = list("tcomms")},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"nNJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"nNN" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/space/nearstation) +"nOY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"nPA" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"nQc" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"nRM" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) +"nSj" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"nSo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/lawoffice) +"nTr" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"nUQ" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) +"nVU" = (/obj/item/spear,/turf/open/floor/plating,/area/maintenance/department/engine) +"nWP" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/engine) +"nYb" = (/obj/structure/table_frame/wood,/turf/open/floor/wood,/area/maintenance/department/engine) +"nYn" = (/obj/structure/sign/warning/docking,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"nZw" = (/obj/machinery/door/airlock/abandoned{name = "Backup Laboratory"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"obj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"obP" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plating,/area/maintenance/department/science) +"odM" = (/obj/effect/landmark/barthpot,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) +"oep" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ofN" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ofX" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ohR" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/engine) +"olc" = (/obj/machinery/door/airlock/maintenance{name = "Bedroom"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) +"onX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plasteel,/area/storage/primary) +"ooh" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/wrench/medical,/turf/open/floor/engine,/area/medical/chemistry) +"opz" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering/glass{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) +"ore" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/engine/engineering) +"ost" = (/obj/structure/table/glass,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/stripes/corner,/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/science/xenobiology) +"ous" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_y = -24; req_access_txt = "11"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/engine/engineering) +"ouv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) +"ovB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"ovM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Port Fore"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) +"owS" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"oxw" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) +"oyF" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/primary) +"ozO" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) +"oAw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/engine/engineering) +"oAW" = (/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) +"oBb" = (/obj/structure/sign/warning/biohazard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/xenobiology) +"oCn" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/lawyer,/turf/open/floor/carpet,/area/lawoffice) +"oCX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"oDP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"oEA" = (/turf/closed/wall,/area/construction/mining/aux_base) +"oEG" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28},/obj/item/shard{icon_state = "medium"},/obj/item/circuitboard/computer/operating,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"oEW" = (/obj/machinery/button/door{id = "misclab"; name = "Test Chamber Blast Doors"; pixel_y = -2; req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/button/ignition{id = "xenoigniter"; pixel_y = 7},/turf/open/floor/plasteel,/area/science/xenobiology) +"oFf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"oFo" = (/obj/structure/closet/emcloset/anchored,/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/emergency/starboard) +"oFI" = (/obj/structure/closet,/obj/effect/decal/cleanable/blood/old,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plasteel,/area/maintenance/department/engine) +"oGw" = (/obj/item/clothing/mask/gas,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal/incinerator) +"oHa" = (/obj/machinery/power/emitter/anchored{dir = 8; state = 2},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engineering) +"oKa" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"oKv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/engine/engineering) +"oKJ" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/engine/engineering) +"oLR" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit/departure_lounge) +"oMN" = (/turf/open/floor/plasteel/stairs/left,/area/maintenance/department/crew_quarters/dorms) +"oNE" = (/obj/structure/chair/office/light,/obj/structure/sign/warning/deathsposal{pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"oPx" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"oPy" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningdock) +"oQm" = (/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 5; id = "commonmining_home"; name = "SS13: Common Mining Dock"; roundstart_template = /datum/map_template/shuttle/mining_common/meta; width = 7},/turf/open/space/basic,/area/space) +"oRX" = (/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/department/cargo) +"oSc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"oSL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"oTl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"oTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"oTC" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/cola,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"oUa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"oWu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) +"oWw" = (/obj/item/flashlight,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"oXe" = (/obj/structure/table/glass,/obj/item/mmi,/obj/item/clothing/mask/balaclava,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) +"oXq" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Cooling Loop Bypass"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"oYj" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"oZW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) +"paU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plating/airless,/area/engine/engineering) +"pbm" = (/obj/machinery/door/airlock/external{name = "Pod Docking Bay"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/chapel/dock) +"pbI" = (/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/white,/area/science/explab) +"pbR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) +"pdq" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"pdW" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/science/explab) +"peE" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/prison) +"pfz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/execution/transfer) +"pfB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/armory) +"pfP" = (/obj/structure/table,/obj/item/storage/box/syringes,/obj/machinery/camera{c_tag = "Xenobiology Computers"; dir = 4; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/xenobiology) +"pgH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"phJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"phS" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"pia" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/rack,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"pjH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space/nearstation) +"pkM" = (/obj/machinery/door/airlock/external{req_access_txt = "22"},/turf/open/floor/plating,/area/chapel/office) +"plA" = (/obj/structure/musician/piano,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"pmB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "N2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) +"pnU" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 4; external_pressure_bound = 120; name = "server vent"},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"poP" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"pps" = (/turf/closed/wall,/area/engine/break_room) +"ppQ" = (/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"pqP" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/entry) +"prQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/engine/supermatter) +"psd" = (/obj/machinery/atmospherics/components/binary/pump{name = "Gas to Filter"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) +"puw" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/supermatter) +"pvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"pwj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"pwS" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space/basic,/area/space/nearstation) +"pxD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/chemistry) +"pzF" = (/mob/living/simple_animal/opossum,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"pBD" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/sign/warning{pixel_y = -32},/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/maintenance/department/engine) +"pBJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"pCo" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) +"pDP" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"pEH" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/chair/comfy{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"pEL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/wood,/area/lawoffice) +"pFe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"pFy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) +"pGe" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"pHo" = (/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) +"pKd" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/department/cargo) +"pMG" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"pNy" = (/obj/structure/closet/firecloset,/obj/machinery/camera{c_tag = "Toxins Launch Area"; network = list("ss13","rd")},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"pOr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"pQw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) +"pVD" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/department/engine) +"pWm" = (/obj/machinery/door/window/southleft{dir = 4; name = "Test Chamber"; req_access_txt = "55"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"pWF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/science) +"pWT" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"pXc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet,/area/library) +"pXg" = (/obj/structure/table/glass,/obj/structure/window/reinforced,/obj/item/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/extinguisher,/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"pXT" = (/obj/item/kirbyplants,/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 8; name = "Law Office APC"; pixel_x = -24},/obj/structure/cable,/turf/open/floor/wood,/area/lawoffice) +"pYh" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/closed/wall/r_wall,/area/engine/engineering) +"pYw" = (/obj/item/kirbyplants{icon_state = "plant-03"},/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/dark,/area/science/lab) +"pYC" = (/obj/structure/sign/warning{pixel_y = -32},/obj/structure/barricade/wooden,/turf/open/floor/plasteel,/area/maintenance/department/engine) +"qar" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"qbp" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"qbZ" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/storage/emergency/starboard) +"qcD" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"qcH" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"qdi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Containment Pen Access"; req_access_txt = "55"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) +"qdj" = (/obj/structure/disposalpipe/segment,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) +"qeY" = (/turf/closed/wall/r_wall,/area/engine/supermatter) +"qhE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"qjx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"qkM" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/engine/engineering) +"qni" = (/obj/machinery/smartfridge/organ/preloaded,/turf/closed/wall,/area/medical/surgery) +"qnT" = (/obj/machinery/iv_drip,/turf/open/floor/plating,/area/maintenance/department/science) +"qpd" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 8},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"qpS" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"qtA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"qtF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"qtO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"qxq" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Air Out"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) +"qyF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) +"qAM" = (/obj/effect/spawner/lootdrop/maintenance,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/cargo) +"qBv" = (/obj/item/clothing/head/ushanka,/turf/open/floor/plating,/area/maintenance/department/engine) +"qDJ" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/debugger,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"qEN" = (/obj/machinery/rnd/production/techfab/department/service,/obj/structure/window/reinforced{dir = 8},/turf/closed/wall,/area/crew_quarters/bar) +"qFu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"qGu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"qGZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) +"qHI" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"qIC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"qIO" = (/obj/structure/table,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/storage/bag/ore,/obj/item/pickaxe,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/department/science) +"qLI" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/cable_coil,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) +"qMi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/turf/open/floor/plating,/area/security/execution/transfer) +"qOE" = (/turf/open/floor/plasteel/dark,/area/library/lounge) +"qOH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) +"qPB" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"qRl" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"qRm" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/entry) +"qTV" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"qUw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"qVk" = (/obj/machinery/door/poddoor/incinerator_atmos_aux,/turf/open/space/basic,/area/maintenance/disposal/incinerator) +"qVP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"qWo" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/chapel/monastery) +"qWG" = (/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/engine/engineering) +"qWM" = (/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"qXq" = (/obj/machinery/door/airlock/maintenance/abandoned,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"qXH" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"qYi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) +"qYq" = (/obj/structure/cable{icon_state = "2-4"},/obj/item/wrench,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"qYS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"rar" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"rdB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"reH" = (/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/maintenance/department/engine) +"reV" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plating,/area/maintenance/department/engine) +"rgn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) +"rgs" = (/obj/structure/table,/obj/item/instrument/eguitar,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"rhr" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/engine) +"riF" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"riW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"rjF" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) +"rmC" = (/turf/open/space/basic,/area/space/station_ruins) +"rnr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating/airless,/area/space/nearstation) +"rnE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"roc" = (/obj/structure/cable,/turf/open/floor/plating/airless,/area/space/nearstation) +"ros" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) +"rrb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"rrU" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"rse" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/engine) +"rsZ" = (/obj/machinery/camera/motion{c_tag = "Telecomms External Access"; dir = 1; network = list("tcomms")},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"rui" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/turf/open/floor/plating,/area/maintenance/department/science) +"rvH" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; dir = 4; freq = 1400; location = "Medbay"},/obj/machinery/door/window/southleft{dir = 4; name = "Medbay Delivery"; req_access_txt = "28"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"rxa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"rxQ" = (/obj/machinery/door/airlock/abandoned{id_tag = "PottySci"; name = "Science Bathroom"},/turf/open/floor/plating,/area/maintenance/department/science) +"rxV" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"rzp" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"rzF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/asteroid/monastery) +"rBh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) +"rEh" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs/cable/zipties,/obj/item/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/department/science) +"rFq" = (/obj/structure/chair,/obj/item/reagent_containers/food/snacks/donkpocket,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"rHA" = (/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"rJg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) +"rJZ" = (/obj/docking_port/stationary{area_type = /area/construction/mining/aux_base; dheight = 4; dwidth = 4; height = 9; id = "aux_base_zone"; name = "aux base zone"; roundstart_template = /datum/map_template/shuttle/aux_base/small; width = 9},/turf/open/floor/plating,/area/construction/mining/aux_base) +"rKr" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/port) +"rKL" = (/obj/item/trash/cheesie,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"rLi" = (/obj/machinery/button/door{id = "shootshut"; name = "shutters control"; pixel_x = 28},/obj/item/ammo_casing/shotgun/improvised,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"rMV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating/airless,/area/maintenance/department/engine) +"rNi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/open/floor/plasteel,/area/engine/atmos) +"rNB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/science) +"rPg" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"rPW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/science/mixing) +"rSH" = (/obj/item/trash/can,/turf/open/floor/wood,/area/maintenance/department/engine) +"rTd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) +"rWE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard) +"rXT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) +"rYC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "public external airlock"},/turf/open/floor/plating,/area/storage/emergency/starboard) +"sbk" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) +"sbY" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/lawoffice) +"sci" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/science) +"scp" = (/obj/machinery/door/airlock/maintenance{name = "Auxillary Base Maintenance"; req_access_txt = "12"; req_one_access_txt = "32;47;48"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/mining/aux_base) +"scz" = (/obj/machinery/power/apc/highcap/fifteen_k{dir = 8; name = "Engineering APC"; pixel_x = -28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/engine/engineering) +"sdk" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Armory External"; dir = 1},/turf/open/space,/area/space/nearstation) +"sgc" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"shH" = (/turf/closed/wall/r_wall,/area/space/nearstation) +"sij" = (/obj/structure/closet,/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) +"sjC" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/power/port_gen/pacman,/turf/open/floor/plasteel,/area/engine/engineering) +"skw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/maintenance/department/security/brig) +"slJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"smv" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Cooling Loop to Gas"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"spz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/science) +"sqh" = (/obj/structure/chair{dir = 8},/obj/structure/sign/poster/contraband/random{pixel_x = 32},/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"sqQ" = (/turf/open/floor/plating,/area/maintenance/disposal) +"srZ" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/disposal) +"ssx" = (/obj/item/shard,/turf/open/floor/plating,/area/maintenance/department/engine) +"stQ" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/sign/departments/science{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/engine) +"sut" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"svA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/engineering) +"svN" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/departments/restroom{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) +"swg" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"sww" = (/obj/effect/decal/cleanable/blood/old,/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) +"syn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/security/brig) +"syQ" = (/obj/machinery/vending/games,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"szG" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer) +"sAK" = (/obj/item/clothing/mask/gas/plaguedoctor,/turf/open/floor/plating,/area/maintenance/department/science) +"sBA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"sEB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/science) +"sEN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"sGr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"sIK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/flashlight,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"sJp" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/security/execution/transfer) +"sJr" = (/turf/open/floor/wood,/area/lawoffice) +"sKa" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"sNz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"sOC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/security/execution/transfer) +"sQt" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage) +"sUP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/meter,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"sWj" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"sWW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/engine/engineering) +"sXi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/warning/deathsposal{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/department/engine) +"sXR" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/science/xenobiology) +"sYQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"sZh" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/disposal) +"sZu" = (/obj/item/storage/backpack/satchel/explorer,/turf/open/floor/plating,/area/maintenance/department/science) +"tan" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/centcom{name = "Chapel Office"; req_access_txt = "22"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"tap" = (/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"taA" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"taT" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 4; name = "euthanization chamber freezer"},/turf/open/floor/plasteel,/area/science/xenobiology) +"tcY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) +"tdp" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/hand_labeler,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) +"tdB" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"tdL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) +"tfw" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating/airless,/area/space/nearstation) +"tfx" = (/obj/machinery/atmospherics/components/binary/valve{dir = 1},/turf/open/floor/plating,/area/maintenance/department/science) +"tfP" = (/obj/item/beacon,/turf/open/floor/engine,/area/science/xenobiology) +"tfZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/department/security/brig) +"thA" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"thW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"tim" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance"; req_access_txt = "47"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/science/explab) +"tix" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) +"tkL" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"tlc" = (/obj/machinery/recharger,/obj/structure/table,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"tlp" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"tlw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"tlN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"tlV" = (/obj/structure/reflector/single/anchored{dir = 6},/turf/open/floor/plating,/area/engine/engineering) +"tnP" = (/obj/machinery/seed_extractor,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) +"tnY" = (/obj/machinery/button/door{id = "aux_base_shutters"; name = "Public Shutters Control"; pixel_x = -26; req_one_access_txt = "32;47;48"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"tpb" = (/obj/item/reagent_containers/food/snacks/donut,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"tqO" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"tqX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"ttS" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/mob/living/simple_animal/pet/bumbles,/turf/open/floor/plasteel,/area/hydroponics) +"tue" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating/airless,/area/space/nearstation) +"tuy" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber"; dir = 8; network = list("xeno","rd")},/obj/machinery/light{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) +"tvj" = (/obj/structure/festivus{anchored = 1; desc = "A pole for dancing."; name = "pole"},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"tvP" = (/obj/item/storage/toolbox/mechanical,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"twv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"typ" = (/obj/structure/table/glass,/obj/item/hemostat,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"tyL" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"tzH" = (/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/lab) +"tAK" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/science/explab) +"tCP" = (/obj/docking_port/stationary/public_mining_dock,/turf/open/floor/plating,/area/construction/mining/aux_base) +"tDn" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/cargo) +"tHk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = 3},/turf/open/floor/plasteel,/area/hallway/primary/central) +"tIS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) +"tJr" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/turf/open/floor/plasteel,/area/science/lab) +"tLP" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/warehouse) +"tOD" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"tRc" = (/obj/structure/ore_box,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) +"tSL" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"tTl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"tTZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"tXn" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"uaC" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) +"uaE" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"uaO" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"uaP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"ubW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/science/mixing) +"udl" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) +"uek" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/science) +"ueP" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/machinery/button/door{id = "xenobiomain"; name = "Containment Blast Doors"; pixel_x = 28; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"ueV" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"ueX" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/engineering_construction,/turf/open/floor/plasteel,/area/engine/engineering) +"ufa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ugC" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"uiP" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/wood,/area/maintenance/department/engine) +"ujI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ukn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/department/engine) +"ukp" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Gas"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"ulu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"ulY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) +"ume" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"uoj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/science) +"uos" = (/obj/machinery/computer/camera_advanced/base_construction,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"uoS" = (/turf/open/floor/plating,/area/construction/mining/aux_base) +"upc" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"uqJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/execution/transfer) +"urP" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/light,/turf/open/floor/plasteel,/area/science/explab) +"utg" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) +"uug" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) +"uun" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) +"uuS" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/carpet,/area/lawoffice) +"uvo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) +"uvq" = (/obj/structure/table,/obj/item/dice/d20,/turf/open/floor/plating,/area/maintenance/department/science) +"uwb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"uwX" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/maintenance/department/engine) +"uxP" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/chair{dir = 8; name = "Defense"},/obj/machinery/camera{c_tag = "Atmospherics Starboard"; dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"uzh" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/engineering/glass/critical{heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/engine,/area/engine/supermatter) +"uzn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"uAU" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/clothing/glasses/sunglasses,/turf/open/floor/carpet,/area/lawoffice) +"uAZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera{c_tag = "Experimentation Lab Mixing Area"; network = list("ss13","rd")},/turf/open/floor/engine,/area/science/explab) +"uCS" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"uHG" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating/airless,/area/space/nearstation) +"uIn" = (/obj/machinery/power/terminal{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"uIB" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) +"uLF" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"uMe" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) +"uMo" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/closet/crate/solarpanel_small,/turf/open/floor/plasteel,/area/engine/engineering) +"uMt" = (/obj/effect/turf_decal/plaque,/turf/open/floor/plating,/area/maintenance/department/engine) +"uQR" = (/obj/item/ammo_casing/shotgun/beanbag,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"uRk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/engine,/area/engine/engineering) +"uUQ" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"uVf" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/obj/item/pen/fountain,/obj/item/stamp/law,/turf/open/floor/carpet,/area/lawoffice) +"uXG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"uXH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard) +"uZb" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) +"vay" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"vco" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"veF" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space) +"veM" = (/obj/machinery/suit_storage_unit/rd,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"vgp" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Containment Pen"; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"vhk" = (/obj/structure/chair,/turf/open/floor/carpet,/area/lawoffice) +"vjd" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"vli" = (/obj/structure/table,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/machinery/light,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) +"vlC" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"vlF" = (/obj/item/coin/silver,/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/obj/structure/light_construct/small{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"vmG" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"vmY" = (/obj/structure/sign/warning/deathsposal{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"voh" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"vsk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"vsw" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Starboard"; dir = 8; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"vsJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"vtl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) +"vtT" = (/turf/open/floor/plating,/area/maintenance/solars/port) +"vuP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plating,/area/storage/emergency/starboard) +"vuQ" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/department/science) +"vxp" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Research Division Delivery"; req_access_txt = "47"},/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced,/obj/item/assembly/mousetrap,/turf/open/floor/engine,/area/science/explab) +"vxr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"vzz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) +"vzA" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"vzP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) +"vzT" = (/obj/structure/table,/obj/item/stack/rods{amount = 5; layer = 3.3},/obj/effect/spawner/lootdrop/maintenance,/obj/item/assembly/prox_sensor{pixel_y = 2},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) +"vAq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"vBE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"vCC" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"vGg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) +"vHf" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/science) +"vIc" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"vKq" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"vMx" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"vOw" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library) +"vRi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) +"vRm" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/noticeboard{pixel_y = 32},/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow{pixel_x = -1; pixel_y = 3},/obj/item/clothing/gloves/color/yellow,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Engineering Port Storage"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) +"vTL" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"vTN" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) +"vVO" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"vYN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8; external_pressure_bound = 140; name = "server vent"; pressure_checks = 0},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"wbB" = (/obj/machinery/atmospherics/components/binary/pump{name = "External Gas to Loop"},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) +"wbF" = (/obj/machinery/rnd/production/circuit_imprinter,/obj/machinery/camera{c_tag = "Engineering Starboard Aft"; dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) +"wcs" = (/turf/open/floor/plasteel/dark,/area/engine/engineering) +"wdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/engine) +"weL" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/engine) +"wfc" = (/obj/structure/ore_box,/turf/open/floor/plating,/area/maintenance/department/science) +"wfs" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/science/xenobiology) +"wfG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) +"wfO" = (/mob/living/simple_animal/hostile/retaliate/poison/snake,/turf/open/floor/plating,/area/maintenance/department/engine) +"wfP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"wig" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"wiB" = (/obj/item/shard{icon_state = "small"},/obj/item/stack/cable_coil/red,/turf/open/floor/plating,/area/maintenance/department/engine) +"wjm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) +"wjQ" = (/obj/machinery/computer/shuttle/mining/common{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"wkZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/shower{dir = 4; name = "emergency shower"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"wlK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"wnJ" = (/obj/structure/sign/warning,/turf/closed/wall,/area/science/mixing) +"woq" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wqu" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"wrU" = (/obj/machinery/photocopier,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/wood,/area/lawoffice) +"wtE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"wun" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"wwr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"wwG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wxb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"wxJ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "prison release"; name = "prisoner processing blast door"},/turf/open/floor/plasteel/dark,/area/security/brig) +"wzb" = (/obj/structure/chair,/turf/open/floor/wood,/area/maintenance/department/engine) +"wAI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/cargo) +"wBb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) +"wBg" = (/obj/machinery/door/airlock/maintenance{id_tag = "Potty1"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) +"wDl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/engine/engineering) +"wDm" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wDZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"wEn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"wFT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/science) +"wIo" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"wIv" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Engineering Maintenance APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/engine) +"wKa" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"wLo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoshutters"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"wMF" = (/obj/effect/spawner/lootdrop/three_course_meal,/obj/effect/spawner/lootdrop/three_course_meal,/obj/structure/closet/crate,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) +"wMM" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) +"wMX" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/supermatter) +"wNq" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) +"wOa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"wOf" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) +"wOS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/science/mixing) +"wQU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) +"wRk" = (/obj/structure/rack,/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) +"wRz" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) +"wRI" = (/obj/machinery/power/apc{dir = 1; name = "Brig Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wTD" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/folder/red,/obj/item/clothing/glasses/sunglasses,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Law Office"; dir = 8},/turf/open/floor/carpet,/area/lawoffice) +"wTO" = (/obj/structure/frame/computer,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) +"wUf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/storage/emergency/port) +"wUz" = (/obj/structure/chair/stool,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"wVC" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci"; location = "Bar1"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"wXu" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) +"wYu" = (/obj/machinery/door/poddoor/shutters{id = "shootshut"},/turf/open/floor/plating,/area/maintenance/department/security/brig) +"wYK" = (/obj/machinery/power/supermatter_crystal/engine,/turf/open/floor/engine,/area/engine/supermatter) +"xah" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) +"xaO" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) +"xaQ" = (/obj/structure/chair{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) +"xbJ" = (/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) +"xee" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) +"xer" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) +"xeB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/lawoffice) +"xgh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"xgG" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"xhj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) +"xhE" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) +"xhI" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) +"xja" = (/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Library APC"; pixel_x = 24},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/library) +"xjc" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/library) +"xje" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"xjg" = (/mob/living/simple_animal/hostile/retaliate/goose,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) +"xjK" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/structure/rack,/obj/item/taperecorder,/obj/item/restraints/handcuffs,/obj/item/assembly/flash/handheld,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"xjT" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"xlg" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/turf/open/floor/plating,/area/maintenance/department/science) +"xlA" = (/obj/machinery/door/airlock/maintenance/abandoned,/turf/open/floor/plating,/area/maintenance/department/science) +"xmp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"xmE" = (/obj/structure/chair{dir = 8},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engineering) +"xnm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/tcommsat/computer) +"xnP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"xpr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"xpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/science) +"xsO" = (/obj/item/ectoplasm,/turf/open/floor/plating,/area/maintenance/department/science) +"xuv" = (/obj/item/broken_bottle,/turf/open/floor/plating,/area/maintenance/solars/port) +"xvO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"xxw" = (/obj/machinery/atmospherics/components/binary/pump,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"xxO" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #2"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) +"xxS" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"xyl" = (/obj/structure/table,/obj/item/assembly/timer,/turf/open/floor/plating,/area/maintenance/department/cargo) +"xyB" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) +"xzp" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"xzR" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) +"xCV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) +"xDj" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"xEx" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) +"xFl" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/tcommsat/server"; dir = 1; layer = 4; name = "Telecomms Server APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"xGc" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space/station_ruins) +"xIx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/science/mixing) +"xJy" = (/obj/structure/chair/comfy/black,/obj/structure/sign/plaques/kiddie{desc = "An embossed piece of paper from the Third University of Harvard."; name = "\improper 'Diploma' frame"; pixel_y = 32},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/landmark/start/lawyer,/turf/open/floor/wood,/area/lawoffice) +"xKc" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall/r_wall,/area/science/xenobiology) +"xLi" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) +"xLC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/lawoffice) +"xNx" = (/obj/structure/lattice,/obj/structure/disposalpipe/junction/flip,/turf/open/space/basic,/area/space/nearstation) +"xNy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) +"xOC" = (/obj/machinery/door/airlock/external{name = "Construction Zone"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/construction/mining/aux_base) +"xPa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/engine,/area/science/explab) +"xQc" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock{name = "Port Emergency Storage"},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) +"xQk" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) +"xSd" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) +"xSX" = (/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/chapel/office) +"xSZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) +"xVt" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/rack,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"xWl" = (/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/structure/table/glass,/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel,/area/science/xenobiology) +"xYV" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) +"ybX" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) +"ycr" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plating,/area/maintenance/department/security/brig) +"ycx" = (/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/department/engine) +"ydf" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) +"yfO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) +"ygZ" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/cargo) +"ymb" = (/obj/machinery/camera{c_tag = "Engineering Telecomms Access"; dir = 8; network = list("tcomms")},/obj/machinery/light{dir = 4},/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/engineering) (1,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(2,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(3,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(4,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(5,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(6,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(7,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(8,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(9,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(10,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(11,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(12,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(13,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(14,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(15,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(16,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(17,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(18,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(19,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(20,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(21,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(22,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(23,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(24,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(25,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aoH -aoH -aoH -aoH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(26,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aaa -aoI -aaa -aoH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(27,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoI -aoI -azG -aoI -aoI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(28,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aaa -azH -aaa -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(29,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(30,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -azI -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(31,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aqb -ara -ara -ara -ara -ara -ara -ara -ayy -azJ -aAV -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aIr -aoI -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(32,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqc -aqc -aqc -aqc -aqc -aqc -aqc -aqc -aaa -azK -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(33,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(34,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -azK -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(35,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aqb -ara -ara -ara -ara -ara -ara -ara -ayy -azK -aAV -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aIr -aoI -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(36,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqc -aqc -aqc -aqc -aqc -aqc -aqc -aqc -aaa -azK -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(37,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(38,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -azK -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(39,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aqb -ara -ara -ara -ara -ara -ara -ara -ayy -azK -aAV -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aIr -aoI -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(40,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -azK -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(41,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoJ -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(42,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -azK -aaa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aqa -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cjB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(43,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aqb -ara -ara -ara -ara -ara -ara -ara -ayy -azK -aAV -aCa -aCa -aCa -aCa -aCa -aCa -aCa -aIr -aoI -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bZY -bZY -cBM -bZY -bZY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -fIT -cfH -fIT -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(44,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -azK -aaa -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aqc -aaa -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bZY -bZY -csn -ceF -csY -bZY -bZY -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -fIT -cfI -fIT -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(45,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aaa -aaa -aaa -azK -aaa -aaa -aaa -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aoI -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cBM -csd -csd -csB -csd -csd -cBM -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -fIT -cjC -fIT -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(46,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aoH -aoI -aoH -aoH -aoH -aaa -aaa -aaa -aaa -aaa -aaa -azL -aaa -aaa -aaa -aaa -aaa -aaa -aoH -aoI -aoH -aoH -aoH -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -bZY -bZY -cse -cso -csC -cdp -kDf -bZY -bZY -cfN -cfN -cfN -cfN -cfN -cfN -cfN -bWV -bWV -fIT -cfJ -fIT -bWV -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(47,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -bZY -bZY -bZY -bZY -jsD -csd -csp -csp -csp -csd -dpb -bZY -bZY -cfN -cfN -cfN -cfN -cfN -cfN -bWV -ciJ -cjf -bXJ -cjZ -bWV -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(48,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bZY -bZY -crt -crD -bZY -xSX -csi -owS -csE -rrU -ctr -cdo -ctX -bWV -bWV -bWV -bWV -bWV -bWV -bWV -bWV -ciK -cjg -cjk -cka -bWV -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(49,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -crb -crg -cru -crE -ceh -crT -csf -pFe -hYe -kwm -ctr -cdo -kfM -bWV -cuk -cus -cuG -bWV -chC -chV -bWV -bWV -cvq -ceP -bWV -bWV -bWV -bWV -cwM -bIT -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(50,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -bZY -ceC -crv -crF -nku -ceE -csg -csq -csE -cta -ctr -cdo -lzJ -bWV -cgb -cut -cuH -chb -chD -chW -bWV -bWV -cgf -cvA -bWV -cwj -cww -bWV -fIT -fIT -cxg -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(51,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abN -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -bZY -crh -crv -crG -bZY -crU -csh -csr -csF -ctb -ctt -ctJ -bZY -bWV -cul -chB -cuI -chc -cuZ -chX -bWV -ciz -cvr -ceP -cvR -bXJ -bXJ -crj -cwO -fIT -cxh -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(52,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bVp -cfN -cfN -bZY -bZY -bZY -bZY -bZY -bZY -lAf -css -csG -cta -ctu -bZY -bZY -bWV -cum -cgd -cuJ -chd -chE -chY -bWV -ciz -cvs -cvB -cvS -cdw -cjj -bXJ -bXJ -fIT -fIT -cxg -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(53,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGI -bNs -cfN -cfN -cfN -cfN -cfN -bZY -giI -pkM -crv -css -csG -cta -gKz -bZY -cfN -bWV -cfC -cuu -chU -cuR -ciy -chZ -bWV -ciz -ckb -cku -cvT -bZo -cwx -cwE -ckv -ckM -clb -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(54,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGI -bNs -cfN -cfN -cfN -cfN -bOw -bZY -pkM -bZY -bZY -cfk -tan -cte -bZY -bZY -cfN -bWV -bWV -cgf -bWV -cuS -bWV -bWV -bWV -ciz -ckb -cku -cvT -cwk -cwy -cwF -ckw -ckN -clb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(55,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aed -aby -aht -aby -aby -aby -aht -aby -aby -aby -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGI -bNs -cfN -bOw -cfN -bOw -bOw -bOw -bQg -bOw -ccu -cbG -cef -ceB -cfN -cfN -cfN -bWV -cdr -cuv -bXJ -ceP -crj -ciN -bWV -ciz -ckc -cvC -cvV -ceQ -ciA -bXJ -bXJ -fIT -fIT -cxg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(56,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aht -aaa -aaa -aaa -aaa -aht -aaa -aaa -aaa -aaa -aht -aaa -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aby -aby -aby -cqU -bNs -bUC -bOw -bOw -bOw -bOw -bOw -bQg -bUC -bOw -cbG -csM -ceB -cfN -cfN -cfN -bWV -cdC -cuw -cbK -ctg -ciA -cvd -bWV -ciz -cvt -ceP -crk -bXJ -bXJ -cwG -cwO -fIT -cxk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(57,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiu -ait -ait -ait -aiu -aiu -ait -ait -ait -aiu -aiu -aht -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -bOv -bNs -bNs -bWh -bQg -bQg -bQg -bQg -bQg -bQg -bOw -bOw -cbG -cee -ceB -cfN -cfN -cfN -bWV -cdC -cux -cbK -ceP -cdC -ciO -bWV -bWV -cgf -cjl -bWV -cwl -cwz -bWV -fIT -fIT -cxg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(58,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiu -fIN -wwG -gGy -wYu -uQR -uaE -pdq -ajD -dci -aiu -aht -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -bGD -bQQ -bNs -bNs -bQe -bQg -bOw -bOw -bOw -bOw -bOw -bSm -bOw -bUC -cbG -cef -ceB -cfN -cfN -cfN -bWV -bXJ -cuy -cuK -ceP -bXJ -cve -bWV -bXJ -ckd -ceP -bWV -bWV -bWV -bWV -cwR -cwR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cyM -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(59,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiu -oFf -ycr -wDm -wYu -ajD -ajD -ajD -ajD -mwg -aiu -aht -aaa -azH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aby -aby -aby -aby -aaa -bNr -bNs -bNs -bNs -bOw -bOw -bQg -bOw -bOw -bOw -bOw -bQe -bWV -bWV -bWV -cdq -ceg -chJ -cfm -cfm -cfm -cfm -cfm -chF -cfm -cuU -cfm -cfm -cfm -cjH -chF -cuQ -cvX -cke -cky -cld -cCR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aht -aaa -aaa -aaa -cfN -cyM -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(60,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -lcU -sGr -hiw -wYu -ajD -jsf -ajD -rLi -tlc -aiu -aht -axB -rKr -axB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -bOv -bGD -bOv -bQQ -bNs -bNs -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bOw -bWV -bWV -bWV -bXJ -bYz -cdr -csN -ctg -ctx -ctK -ciD -cfD -chf -cuz -ciD -cuV -ciD -cfD -chf -cfD -cvu -cvE -cvY -ckf -ckf -cle -cjm -cjm -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cyM -cfN -cyM -aaa -aht -aaa -aaa -aaa -aaa -aht -aaa -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(61,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -aiu -kJw -aiu -aiu -aiu -aiu -cHS -aiu -aiu -aiu -axC -axB -azN -axB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aed -abI -bNr -bNs -bNs -bNs -bNs -bNs -bSm -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bUC -bWV -cdC -caT -cbK -bWV -cds -csO -ceH -cfl -ctL -cgg -cfE -cfE -cfp -cfE -cuW -cfE -cfE -cfE -cfE -cfo -cvF -cvZ -cwm -ckj -cwH -ckO -cjm -cfN -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -aht -aaa -aht -aaa -aht -aht -aht -aht -aht -aht -aaa -cfN -cfN -cyM -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(62,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aiu -gwn -aiu -apz -aqe -aoK -dcL -apB -aiu -tpb -axC -ayz -azN -axB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bHI -aby -aby -aby -bGH -bNs -bNs -bOw -bQc -bOw -bOw -bOw -bOw -bOw -bOw -bQg -bQg -bOw -bWV -bWV -bWV -bYz -bWV -bWV -bWV -bWV -cei -bWV -cfm -ceJ -cfn -bWV -cgG -cgG -bWV -cuX -bWV -cgG -cgG -bWV -cfn -ciR -cwa -cwn -ckg -ckz -ckP -cjm -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aht -aaa -aaa -aaa -aht -cfN -cfN -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(63,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ait -ait -ait -aiu -aiu -aht -aht -aiu -wRI -ajD -ajD -ajD -aoK -aBa -xyB -aiu -aAa -axC -axB -hzd -axB -axC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGD -bGD -bIT -bJZ -bIT -bMr -bNs -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bWV -crj -bXJ -bXJ -crK -cdr -cdw -csv -csN -bWV -cfm -cfF -cfn -cgG -chi -cid -cuM -chj -cvb -ciT -cvh -cgG -cfn -cvF -cwa -cwo -ckh -ckA -ckP -cjm -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -cjp -cyU -cjp -cyU -cjp -cjp -cyU -cjp -cyU -cjp -cyU -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(64,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ait -aiV -ajB -akr -aiu -ait -ait -aiu -lMU -apB -woq -lXc -nPA -egK -aBa -aiu -azZ -axC -ayA -azP -aAW -axC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGE -bGE -bIU -bHM -bHM -bHM -bHM -bNw -bOw -bQd -bOw -bQd -bOw -bQd -bOw -bQd -bQg -bQd -bWV -bWV -bXJ -bZl -bYA -bZl -bYA -cbP -cdu -csQ -ceK -cfm -cfG -cfn -cgG -cid -cuA -cib -cgH -cgH -ciS -cid -cgG -cfn -cvH -cwc -cwp -cki -ckB -ckP -cjm -caS -caS -caS -caS -aht -aht -aht -aht -cjp -cjp -ckH -cyY -ckH -ckH -ckH -ckH -czH -ckH -cyR -cyU -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(65,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ait -aiW -ajC -ajD -ali -ajD -ajD -anq -aoe -aiu -apB -aiu -aiu -aiu -aoK -aiu -azY -axC -ayB -azQ -aAX -axC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bFE -bGF -bHJ -pbm -bKa -cqH -bLn -bNt -bNw -bNw -bQe -bOw -bOw -bOw -bQe -bOw -bOw -bQg -bQe -bWV -bXJ -bXJ -bZm -bYB -crL -caV -cbM -ccH -csQ -ceL -cfm -ctM -cfn -bWV -cun -cuB -cic -cgH -chG -ciT -cjo -bWV -cvw -cvI -ckQ -clf -cwA -cwA -cwS -cjm -cfN -caS -cfN -aaa -aaa -aaa -aaa -aaa -cjp -cCW -ckH -cyZ -ckH -czl -czr -czr -czI -ckH -ckH -cjp -cjp -cyU -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(66,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -aiX -ajD -aks -aiu -ait -ait -aiu -hOx -aDm -aDm -aDm -aoL -aso -aso -rrb -oPx -axC -ayC -azR -aAY -axC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aTH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGE -bHK -bIV -bKb -bLo -bMs -bNu -bOx -bPn -bQf -bQf -bQf -bQf -bQf -bQf -bQf -bQf -bQf -bWW -bXI -bZn -bZn -bZn -bZn -bZn -bZn -cbN -ccE -cdw -cej -ceM -cfo -cgG -cgk -cuA -ciS -chk -cgH -cgH -cvi -cgG -cfn -ciR -cwa -cjO -ckk -ckC -ckR -cjm -cfN -caS -caS -aht -aht -aht -aht -aht -cjp -ckW -ckH -ckH -ckH -czl -czr -czB -czI -czV -ckH -cAr -cAB -cyU -cjp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(67,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -adR -adR -aht -ait -aiY -ajE -akt -aiu -aaa -aaa -aiu -aCg -aiu -aiu -aiu -wRz -aiu -aiu -aiu -syn -axC -axC -azS -axC -axC -aiu -aiu -aiu -ait -ait -aiu -aaa -aaa -aaa -aHA -aKy -xee -aKy -aHA -aaa -aaa -aaa -aHA -aKy -xee -qIC -aHA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGG -bHL -bIW -bKc -bOy -bMt -bLs -bMy -bPo -bWX -bWX -bWX -bWX -bWX -bWX -bWX -bWX -bWX -cek -cdx -dpc -dpc -dpc -dpc -dpc -dpc -cbO -ccF -cdx -cek -ceN -cfn -cgG -cuo -ciV -cgI -chl -cib -cvg -cid -cgG -cfn -ciR -cwe -cwe -cwe -cwe -cwe -cwe -cwe -cwe -cfN -aaa -aaa -aaa -aaa -aaa -cjp -cyP -ckH -cyZ -ckH -czl -czt -czC -czI -czW -cAg -cAs -ckH -cAH -cjp -cyU -aaa -aaa -aaa -aaa -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(68,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aht -aht -aht -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aCg -aiu -aqg -gjN -arc -atp -aus -aiu -wxb -axC -xuv -azN -vtT -vtT -aiu -apB -aiu -aBa -oTC -ait -aaa -abN -aaa -aHA -aKz -aHA -aKz -aHA -abI -aht -abI -aHA -aKz -aHA -aKz -aHA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGH -bGE -bIX -bKd -bLp -bMu -bNv -bNw -bNw -bQe -bOw -bOw -bOw -bQe -bOw -bOw -bQg -bQe -bWV -bXJ -bXJ -bZl -bYA -crM -caW -cbP -cdu -ceP -cth -cfm -ctN -cfn -bWV -cup -cuE -cgK -cgJ -cgH -cgj -cvj -bWV -cfn -cvJ -cwe -cjP -ckl -ckD -ckS -clg -clk -cwe -cwe -cxB -cxJ -cxJ -cxJ -cyy -cjp -cyQ -ckH -ckH -ckH -ckH -ckH -ckH -ckH -czW -cAg -cAt -ckH -czW -cAS -cyU -aht -aht -aht -cyM -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(69,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afU -afU -pfz -uqJ -afU -afU -ajF -aku -alj -alT -skw -anr -aof -aiu -aqh -lqc -aoe -atq -aut -aiu -giO -aDm -kJo -fAx -aDm -aDm -aDm -aDm -aDm -mLB -wUz -ait -aht -aht -aht -aHA -dqG -aHA -aKz -aHA -abI -aaa -abI -aHA -aKz -aHA -wKa -aHA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bGI -bHM -bHM -bNw -bLq -bMv -bNw -bNw -bOw -bQd -bOw -bQd -bOw -bQd -bOw -bQd -bQg -bWi -bWV -bWV -bXJ -bZm -bYB -bZm -bYB -cbM -ccH -ceP -ceK -cfm -cfG -cfn -cgG -ciV -cgH -cgH -cgH -cic -ciV -cjq -cgG -cfn -ckE -ckT -xhj -xhj -cwK -odM -xhj -cxn -xhj -lqy -cxC -cxK -cxX -cyl -cyz -jgr -cjQ -cjQ -cjQ -cjQ -cjQ -cjQ -cjQ -czL -czY -cAi -cAu -cAC -cAJ -cAT -cyU -aaa -aaa -aaa -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(70,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -agi -agi -agi -afU -hwj -ahu -ahS -oXe -afU -ajG -akv -alk -alU -amH -ans -ePU -aiu -aqi -ard -asr -atp -auu -aiu -ekU -aiu -asr -tyL -ajD -nPA -mtu -aCc -aiu -wxb -wig -ait -aaa -aaa -aaa -aHA -wqu -aHA -wqu -aHA -abI -aht -abI -aHA -wqu -aHA -wqu -aHA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -btK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bHN -bGE -bKe -bLr -bMw -bNx -bNw -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bWV -crk -bXJ -bXJ -crN -crX -cdx -cgn -csS -bWV -cfm -ctO -cfn -cgG -cgm -cuE -cuO -cgH -ciE -ciW -cjr -cgG -cvw -cvK -cwg -cjR -jFO -ckF -jFO -cxe -jFO -jFO -cxz -cxD -cxL -cxY -cym -cyA -vOw -ijF -pXc -ckm -ckm -ckm -ckm -ckm -czM -czZ -cAj -cAv -cAD -cAK -cAU -cyU -aaa -aaa -aaa -cfN -cfN -cfN -cfN -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(71,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -szG -sOC -iCV -msX -dVI -ahv -ahT -aiv -afU -ajG -akw -all -alV -tfZ -vCC -lHc -aiu -aiu -aiu -ait -ait -aiu -aiu -aiu -aiu -ait -ait -aiu -aiu -aiu -aiu -aiu -aCg -aiu -aiu -aiu -aiu -aHz -xee -aKB -nYn -aKB -xee -aHA -aHA -aHA -xee -aKB -nYn -fTY -xee -aYG -aZx -aZx -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bsl -btL -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aqG -bGE -cqW -bKf -bMw -bNy -bNw -bOw -bQh -bOw -bOw -bOw -bSm -bOw -bOw -bQg -bOw -bOw -bWV -bWV -crx -crH -bWV -crY -csk -bWV -cbR -bWV -cfm -ceP -cfn -bWV -cgG -cgG -bWV -cuY -bWV -cgG -cgG -bWV -cfn -ceP -cwe -cwr -clm -ckG -cwU -jXh -ckU -cwe -cwe -cxE -cxM -cxM -cxM -cyB -cjp -cyR -ick -ckH -ckH -ckH -ckH -ckH -ckH -cAa -cAg -cAt -ckH -cAa -cAV -cyU -aaa -aaa -cfN -cfN -cfN -cfN -cfN -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(72,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -lem -mzl -sJp -qMi -iPU -ahw -ahU -aiw -afU -ajH -ajH -ajH -ajH -ajH -ant -aiu -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -aCd -hHr -hHr -aCg -ezF -aod -aqg -aiu -iab -aKA -aOk -aJE -aWE -aWE -wwr -hwd -wwr -aOk -aOk -aJE -aWE -aWK -aYG -aZy -baJ -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aZx -bcX -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aht -aqG -bGE -izF -ros -bMx -bNz -bHM -bNs -bNs -bNs -bNs -bOw -bOw -bOw -bOw -bQg -bOw -bOw -bOw -bWV -bWV -bWV -bWV -bWV -bWV -bWV -ccJ -cdw -cel -ceM -cfp -cfE -cfE -chn -cfE -cdw -cfE -chn -cfE -cfE -cvy -cfG -cwe -cwe -fWv -qOE -ckV -qOE -cln -cwe -cfN -aaa -aaa -aaa -aaa -aaa -cjp -cyS -ick -cyZ -ckH -czo -czu -czD -czN -cAa -cAg -cAs -ckH -cAM -cjp -cyU -aaa -aaa -cfN -cfN -cfN -cfN -cfN -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(73,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -agj -agv -agF -agT -ahj -ahx -ahV -aix -aiZ -ajH -akx -alm -alW -amI -anu -aog -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -nyO -ezJ -ujI -dgI -ujI -ujI -iJi -aiu -xaQ -fmU -wOa -qUw -xSZ -wOa -aQv -eAp -aJE -ftW -coN -kvj -ftW -ppQ -aYG -aZy -baK -jzz -aZx -jzz -aaa -aaa -aaa -aaa -aaa -aaa -jzz -aZx -jzz -bsl -btM -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aqG -bGE -bGE -bHM -bHM -bNA -bHM -bSZ -bQi -bQR -bNs -bNs -bOw -bOw -bOw -bQg -bOw -bOw -bOw -bOw -bOw -bOw -bUC -bOw -bQg -cbR -bXJ -cdA -ctx -ctP -cdx -cdx -cgn -cho -cuP -cdx -cvc -cho -cvk -cdx -kXx -csS -cfm -cwe -fWv -qOE -mKc -qOE -cln -cwe -caS -aht -aht -aht -aht -aht -cjp -cko -ick -ckH -ckH -clp -czv -czv -czO -cli -ckH -cAy -cAB -cyU -cjp -aht -aht -aht -cyM -cfN -cfN -cfN -cfN -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(74,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -aht -afU -afU -agw -afU -afU -ahk -ahy -ahW -aiy -aja -ajI -aky -aln -alX -amJ -anv -aoh -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -awE -qGu -eOZ -kQZ -nih -kxs -qGu -aiu -rgs -jeq -pGe -aQt -aOf -xLi -aQr -aQr -aQr -oLR -pGe -aQt -aOf -aWK -aYG -aZy -baK -bbQ -bcX -bdV -aaa -aaa -aaa -aaa -aaa -aaa -bbQ -bcX -bdV -baK -bon -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bIY -bIY -aht -aht -bNB -abI -abI -aby -abI -bRC -bNs -bNs -bNs -bOw -bQg -bQg -bQg -bQg -bQg -bQg -bQg -bQg -bQg -bQg -cbR -bXJ -cdB -cfm -cfm -cfH -cfm -cfm -chp -cuQ -cfm -cfm -ciF -cuQ -cfm -cfm -jSa -cfm -cwe -ckp -ckI -ckX -ckI -cln -cwe -cfN -cfN -aaa -aaa -aaa -aaa -cjp -cyT -ick -cyZ -ckH -czp -ckH -ckH -czP -ckH -ckH -cjp -cjp -cyU -aht -aaa -aaa -aaa -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(75,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aed -adR -abI -abI -abI -abI -abI -afX -agl -agx -agH -agV -ahl -ahz -ahX -aiz -ajb -ajH -akz -alo -alY -amK -anw -aoh -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiu -aiu -kFx -aiu -aiu -aiu -aiu -gKG -aiu -aJD -jeq -pGe -aQu -aOg -aWK -aRD -aSv -aTK -aML -pGe -aQu -aOf -duQ -aYG -aZz -baK -aZx -aZx -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -aZx -aZx -baK -bon -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aaa -aht -aby -aby -abI -bSn -uZb -cqS -bNs -bQe -bOw -bOw -bOw -bQg -bQg -bQg -bOw -bQe -bQg -bWV -csT -cen -bWV -ctQ -cfI -cfm -cgL -chq -chK -cfm -cio -chq -ciX -cfm -cfN -cwA -cfN -cwe -cwe -cwe -cwe -cwe -cwe -cwe -caS -caS -aht -aht -aht -aht -cjp -cjp -xjc -xja -ckH -czq -czw -ckH -czQ -ckH -cyR -cyU -aaa -aaa -aht -aaa -aaa -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(76,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aem -aem -aem -aem -aem -aiA -aiA -aiA -aiA -aiA -aiA -ahA -ahY -aiA -aiA -aiA -akA -alp -akA -akA -akA -aoi -aiu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ebD -sbY -fuP -pXT -wrU -mpy -aiu -gue -aIC -pvK -aKD -gmO -aQt -aOh -aWK -aRE -aSw -aTL -aML -gmO -aQt -gpC -ppQ -aYG -aZA -baK -bbR -bcY -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -bkQ -bbR -baK -bon -aZx -aaa -aaa -aaa -aaa -oQm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -amB -aht -aht -aaa -aaa -abI -abI -abI -uZb -bNs -bNs -bNs -bUC -bOw -crl -bXL -bNs -bOw -bOw -bQg -bWV -csU -bWV -bWV -bWV -cfJ -cfm -cgM -chr -chL -cfm -cgM -chr -chL -cfm -cfN -xSd -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aht -cjp -cyU -cjp -cyU -cjp -cjp -cyU -cjp -cyU -cjp -cyU -aht -aht -aht -aht -cyM -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(77,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeo -aeC -aeT -afn -agy -afZ -agn -agy -agy -agy -agy -ahB -ahZ -aiB -ajc -ajM -akB -alq -alZ -amL -anx -aoj -aiu -aaa -aaa -aaa -aaa -aaa -aaa -avp -aaa -aaa -aaa -aaa -ebD -aCe -gPV -pEL -elk -mXq -aiu -jhk -aiu -gxq -aKE -pGe -aQu -aOg -aWK -aRF -aSx -aTM -aML -pGe -aQu -aOf -aWK -aYG -ovM -baL -baK -bcZ -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -bkR -baK -baL -bon -aZx -aaa -aaa -aaa -aZx -pqP -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aaa -aht -aaa -aaa -aaa -aaa -abI -aaa -veF -bQR -bNs -bNs -bNs -bNs -bXM -bNs -bOw -bOw -bQg -bOw -ccM -cdD -ceo -bOw -bQg -cfm -cgN -chs -chM -cfm -cip -chs -ciY -cfm -cfN -cwA -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -cfN -cfN -aaa -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(78,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -abI -aen -aep -aeD -aeU -aeU -afC -aeU -aeU -agy -agI -agW -agA -ahC -aia -aiC -ajc -ajM -akC -alr -ama -amM -akA -akA -akA -apE -apE -ari -apE -bBW -apE -avq -apE -ajM -aiu -aiu -gSH -xJy -sJr -sJr -sJr -sJr -aiu -jhk -aiu -niy -aKE -pGe -aQt -aOf -aPo -nGi -nGi -nGi -aPn -pGe -aQt -aOf -aWK -aYG -aZA -baK -bbS -bda -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -bkS -bbS -baK -boo -aZx -aaa -aaa -aaa -aZx -bcX -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aht -amB -aht -aht -aht -aht -aht -aht -abI -abI -aht -abI -bSZ -bSZ -cre -bNs -bXN -bNs -bOw -bOw -bQg -bQg -bQg -bQg -bQg -bQg -cfL -cfm -cfm -cht -cfm -cfm -cfm -cht -cfm -cfm -cfN -cwA -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aht -aht -aht -aht -aaa -aaa -aht -aht -aht -aaa -aht -aaa -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(79,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeq -aeE -aeU -afo -afD -aga -aga -agz -aie -aiH -ahm -ahD -aib -aiD -ajc -ajM -akD -als -amb -amN -ajM -aok -aoO -apF -apE -wxJ -apE -bBW -ajM -avr -awH -axE -ayE -aAb -ebD -jjC -eEp -vhk -gAG -kxj -aiu -oTp -aiu -aJF -aKG -gvf -kvj -aOk -aWE -aJE -aRC -aQs -aTJ -vsJ -aVN -cJo -ppQ -aYG -aZA -baM -aZx -aZx -aZx -aaa -aaa -aaa -aaa -aaa -aaa -aZx -aZx -aZx -bno -bon -aZx -aZx -aZx -aZx -aZx -qRm -aZx -aaa -aaa -aht -aaa -aaa -aaa -aaa -aht -aht -aht -aht -aht -amD -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -aht -aaa -aaa -abI -bGI -bNs -rzF -bNs -bOw -bOw -bUC -bOw -bOw -bQe -bOw -bUC -bQg -cfm -cgO -chu -chN -cfm -ciq -chu -ciZ -cfm -cfN -cwA -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aht -aaa -aaa -aht -cfN -cfN -cyM -cfN -aht -aaa -aht -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(80,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -abI -aen -aer -aeF -aeU -afp -afE -aeU -aeU -agy -agK -agY -agy -ahB -aic -aiE -agy -ajM -akE -alt -amc -amO -ajM -aol -aoP -apG -ajM -arj -ajM -ajM -akA -akA -akA -ajM -ayF -aAc -xLC -xeB -nSo -uuS -uAU -oCn -aiu -jhk -aiu -riF -xhE -ftW -aJE -coN -aPq -klB -klB -klB -hkQ -ftW -aJE -fwe -aWK -aYG -aZA -baN -bbQ -bcX -bdV -aaa -aaa -aaa -aaa -aaa -aaa -bbQ -bcX -bdV -bnp -baK -pEH -deJ -sIK -wjQ -pEH -bbR -aZx -aaa -aht -bBV -bDf -bDf -bDf -agS -agS -agS -agS -agS -ala -aht -aaa -aht -aht -aht -aht -aht -aht -aht -aht -abI -abI -abI -aaa -bSZ -ahi -bNs -bNs -bNs -bNs -bNs -bNs -bNs -bNs -bNs -bNs -cfm -cfm -cfm -cfm -cfm -cfm -cfm -cfm -cfm -cfN -cwA -cjm -cfN -cfN -cfN -aaa -aaa -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aht -aaa -cfN -cyM -cfN -cfN -cfN -cfN -cyM -cfN -cyM -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(81,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aes -aeG -aeV -afq -afF -agb -agb -agA -agA -agA -ahn -ahF -aic -aiF -ajd -ajJ -akF -alu -amd -amP -any -aom -aom -akF -aom -ark -asu -atv -aux -avs -awI -axF -ayL -aAd -ebD -aCf -hnu -jTu -wTD -uVf -aiu -jhk -aiu -aiu -aiu -sgc -nDx -gLF -aHz -eLt -aRB -aRB -aOs -fUA -aVM -xmp -aOs -aYG -aZA -baN -jzz -aZx -jzz -aaa -aaa -aaa -aaa -aaa -aaa -jzz -aZx -jzz -bnp -baK -baK -baK -baK -baK -baK -baK -aZx -aaa -bAI -abI -abI -aht -abI -aaa -bva -bIZ -bIZ -bva -bva -bIZ -bIZ -bva -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -abI -ahi -bSZ -crO -arF -arF -arF -arF -arF -crO -crO -crO -crO -crO -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -iXx -cjm -cfN -cfN -aaa -aaa -aaa -aaa -cfN -cfN -aaa -aaa -aaa -aaa -aaa -cyL -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(82,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -abI -aen -aet -aeH -peE -afo -afG -aeU -eSB -agy -agL -agZ -aho -ahG -aid -aiG -aje -ajK -akG -alv -ame -amQ -anz -aon -aon -apH -aqm -aon -asv -atw -aon -avt -awJ -axG -ayG -pFy -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aHC -aIH -ofX -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aiu -aiu -wEn -aPv -fBt -aHz -aYG -aZA -baN -bbR -bbR -aYG -aaa -aaa -bgS -aaa -aaa -aaa -aYG -bbR -bbR -bnp -baK -baK -baK -baK -baK -baK -baK -aZx -aZx -bAJ -bBX -bBX -bBX -bBX -bva -bva -bJa -bHQ -bLt -bHQ -bNF -bHQ -bva -bva -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aht -cdm -abI -aaa -bva -bva -bIZ -bIZ -bIZ -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -xYV -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(83,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeu -tnP -dYe -aeH -afH -aeH -aeH -agB -agM -aha -ahp -ahH -aie -aiH -ajf -ajL -akH -alw -amf -amR -anA -aoo -ana -aoo -aqn -arl -asw -atx -auz -avu -rjF -axG -ayH -aAe -aBc -aCh -eQZ -eQZ -aFk -aFU -eQZ -gjq -aiu -iSz -aIH -aIH -aIH -aOm -aIH -aIH -jTh -aSu -aiu -nfi -aJE -aWF -aXF -aYG -aZC -baN -baK -baK -aYG -aYG -aZx -aZx -aZx -aZx -aYG -aYG -baK -baK -bnq -baM -baK -baK -baK -baK -baK -baK -bxY -bzz -kGe -bBX -bDg -bEj -bFF -bva -bHP -bJb -bJb -bJb -fgS -bJb -bJb -bPp -bva -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aht -cdm -abI -aaa -bIZ -caZ -cbS -ccN -bIZ -cjm -cjm -cjm -cjm -cjm -cjm -cjm -cjm -cjm -cfN -cfN -cfN -cfN -qWo -cjm -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -cfN -cfN -cfN -cfN -cfN -cfN -cfN -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(84,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -abI -aem -agy -agy -lGp -aeU -afI -aeU -jXF -agy -agN -agY -agy -ahI -aif -aiB -agy -ajM -akI -alx -amg -amg -anB -amg -aoQ -amg -aqo -alv -asx -ajM -ajM -ajM -akA -axH -ayI -aAf -aBd -aBd -aBd -aBd -aBd -aFV -oEA -oEA -oEA -oEA -oEA -oEA -oEA -oEA -oEA -ayD -vIc -xxS -vAq -uLF -aVO -aWF -aXG -aYG -aZD -baO -bbT -bbT -bbT -beY -bbT -bbT -bbT -bbT -bbT -bbT -bbT -bbT -bnr -bop -bbT -bbT -bbT -bbT -bbT -bbT -bxZ -bzA -bAK -bBX -bDg -bEk -bva -bva -bHQ -bJc -bKh -bLu -bLu -bNG -bOz -bHQ -bIZ -aaa -aaa -aaa -aaa -aaa -bUD -bVr -cqX -cqX -cqX -crm -cry -abI -aaa -bIZ -cba -cbT -bDi -ozO -cwA -cwA -cwA -cwA -vco -cwA -cwA -cwA -cwA -xYV -bNE -xYV -qWo -lxI -xVt -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -aaa -aaa -aaa -aaa -aaa -aaa -cfN -cfN -cfN -cfN -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(85,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeW -ovB -utg -afr -agy -agc -ago -agy -agy -agy -agy -ahJ -aig -aiJ -agy -ajN -akJ -aly -amg -amS -anC -aop -aoR -apJ -apN -aon -aty -atz -aux -avv -awI -axG -ayL -aAi -aBd -aCi -aDo -xjK -fhM -aFW -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -oEA -oEA -scp -oEA -oEA -dpa -dTV -aWF -kAa -aYG -aZE -baP -bbU -bdb -bdW -beZ -bfY -bfY -bhE -bfY -biI -bfY -bkT -bfY -bns -bfY -bfY -bqS -bsm -btN -bfY -bfY -bya -bzB -bAL -bBX -bDh -bEl -bva -bGK -bHQ -bJd -bKi -bLv -bMA -bNH -bOz -bHQ -bIZ -bBW -bBW -bBW -bTa -bTW -bUE -bva -abI -aaa -aaa -bva -crz -bva -aaa -bIZ -cbb -bDi -ccO -bIZ -cjm -cjm -xgh -xgh -cjm -cjm -cjm -xgh -xgh -cjm -cjm -cjm -cjm -eNc -pia -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(86,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -adR -aaa -aem -aeX -iLR -iPH -iPH -agy -agd -agp -agC -agO -ahb -agy -ahK -aih -aiK -agy -ajO -akK -alz -amg -amT -anD -amX -aoS -apJ -aqq -aon -atB -atA -auA -avw -awJ -axG -ayL -aAi -aBd -aCj -aDp -aEm -aFm -aFn -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -aPt -nsy -eDC -tnY -uCS -mal -dTV -aWI -aXK -aXH -aXH -aXH -aXH -bdc -bdX -bfa -bfZ -bga -bfZ -bfZ -biJ -bfZ -aYG -bmc -bnt -bnt -bpt -aYG -aYG -btO -aYG -aYG -aYG -aYG -aYG -bBX -bva -bEm -bva -aaB -bHQ -bJe -bKj -bLv -bMB -bNI -bOz -bHQ -bIZ -abI -ouv -bBW -bTb -abI -bva -bva -bva -bva -aht -bIZ -crA -bIZ -aaa -bva -bva -bNK -bva -bva -aht -aht -kSb -kSb -aht -aht -mau -fon -fon -aht -aht -aht -cjm -cjm -cjm -cjm -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(87,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -abI -aem -aem -aem -aem -aem -aem -aem -aem -aem -aem -aem -aem -ahL -ahL -ahL -ahL -ahL -ahL -ahL -amg -amU -anE -amX -aoT -apK -aqr -arl -awK -atD -auz -avx -rjF -axG -ayJ -aAg -aBe -aCk -aDq -aEn -aFm -aFX -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -aPt -uos -xnP -qjx -iPO -pOr -geU -aWJ -aXK -aYH -aZF -baQ -aXH -bdd -bdY -bfb -bfZ -bgU -bhF -bib -biK -bfZ -bfZ -aYG -aYG -aYG -aYG -aYG -bsn -btP -bva -bws -byb -bzC -bzC -bBY -bDi -bEn -bva -bGM -bHR -bJf -bKk -bLx -bLx -bNJ -bOz -bHQ -bIZ -abI -rMV -cqy -bTc -cqy -bva -bVs -bVC -cqy -aaa -bva -crB -bva -aaa -aaa -bIZ -csy -bQl -cqX -xNx -ctS -cFB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fon -fon -aht -aht -nKo -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(88,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aed -adR -abI -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -abI -ahL -aii -aiL -ajg -ajP -akL -cBi -amh -amV -anF -amW -aoU -apL -aqs -aon -asz -ajM -ajM -ajM -akA -axI -ayL -aAh -aBf -aCl -aDr -aEo -aFo -aFY -oEA -uoS -uoS -uoS -rJZ -uoS -uoS -tCP -xOC -jAy -rHA -ffJ -oEA -dpa -dTV -aWF -aXI -aYI -aZG -baR -aXI -bde -baK -baN -bga -bgV -bhG -bhG -biL -bjI -bgd -bmd -bnu -boq -bpu -boq -boq -btQ -bvb -bwt -byc -bzD -bAM -bvb -bDj -bEo -bva -bva -bHQ -bJg -bKl -bJb -bMC -bJb -bJb -bPq -bva -bva -rMV -bSo -bSq -bTX -bUF -bNK -bva -bva -bva -bva -crC -bva -bva -bva -bva -bSq -bva -bva -rnE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(89,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -abI -ahL -aij -aiM -aiM -ajQ -akM -juw -ami -amW -anG -amX -aoV -apJ -aqt -arm -rdB -atz -aux -avy -awI -axG -ayL -aAi -aBe -aCm -aCk -aEp -aFm -nBw -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -aPt -aQw -eHI -yfO -hDG -aUG -aVP -aWJ -aXJ -fow -aZH -baS -bbV -bbT -bdZ -bfc -bgb -bgW -bhH -bic -biM -bjJ -bgd -bme -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bnv -bDi -bmf -bsn -bva -bHS -bJh -bKm -bHQ -bMD -bKm -bOA -bPr -bva -bQS -vmY -bSp -bTd -bPC -bDi -bDi -bDi -bWZ -bDi -bDi -bZr -caa -caa -bXa -bRD -bWl -cdE -bIZ -rnE -aaa -aaa -aaa -nge -adR -adR -adR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(90,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -sdk -ahL -aik -aiM -ajh -ajR -akN -ivO -amj -amX -anH -aoq -aoW -apM -aqu -arn -asA -atC -auA -avz -awJ -axG -ayL -aAi -aBd -aCn -aDt -aEq -aFp -aFn -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -aPt -aQx -aRG -qWM -oEA -aUH -dTV -aWF -aXI -aYJ -aZI -baT -aXI -baK -bea -bfd -bgc -bgX -bhG -bid -bgV -bjK -bgd -bmf -bnv -bor -bpv -bqT -bso -btR -bnv -bnv -byd -bzE -bAN -bnv -bDi -bEp -bsn -bva -bva -bva -bva -bLy -bLy -bva -bva -bva -bva -bQT -vay -bSq -bDi -bSw -bSw -bva -bva -bDi -bva -bva -bva -bva -bva -bva -bva -bva -bva -bva -ukn -bIZ -bva -bva -aht -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(91,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -abI -ahL -ail -aiN -aji -ajS -akO -pfB -amk -amY -anI -aor -aoX -apI -apO -aro -jen -atD -auz -avA -rjF -axG -ayL -aAi -aBd -aCo -aCk -aEr -aGa -gQo -oEA -uoS -uoS -uoS -uoS -uoS -uoS -uoS -oEA -oEA -oEA -oEA -oEA -aUI -aQz -fBt -aXK -aYK -aZJ -baU -aXK -bdf -bdf -bfe -bgd -bgY -bhI -bie -biN -bgd -bgd -bmf -bnv -bos -bpw -bqU -bsp -btS -btS -bwu -btS -bwu -bAO -bnv -bDk -bmf -bva -bva -bHT -bJi -bva -bsn -bME -bva -bJi -bHT -bQj -bPA -vay -bSq -bva -bNK -bva -bva -bWj -bWZ -bXS -bva -bNX -bva -cab -jPf -oFI -bva -rse -uIn -mIa -qdj -sXi -bva -bBX -bBX -bBX -bBX -aht -adR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(92,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -abI -ahL -aim -aiO -ajj -ajT -akP -alA -aml -amZ -anJ -amX -aoY -amg -sBA -arp -asB -ajM -ajM -ajM -akA -axJ -ayL -aAi -aBd -aBd -aBd -aBd -aBd -aBd -oEA -oEA -oEA -oEA -oEA -oEA -oEA -oEA -oEA -aKH -aLu -aLu -aRH -aUJ -aVQ -nyB -aXB -aXI -aZK -aXI -aXK -aGV -aGV -bff -bgd -bga -bgd -bgd -bga -bgd -bkW -bmf -bnv -bot -bpx -bqV -bsq -btT -bnv -bnv -bye -bzF -bAP -bnv -bnv -bEq -bFG -bGN -bGN -bGN -bGN -bGN -bGN -bGN -bGN -bPs -bva -bWk -nLl -nfz -npE -oZW -bDi -bDi -bSw -bSw -bSw -bva -bOB -bva -aaC -kRq -kRq -bva -stQ -boq -boq -boq -cgp -dNr -bBX -bDi -bDi -bBX -aht -nge -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(93,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -agP -agQ -agQ -agP -ahL -ahL -ahL -ahL -ahL -ahL -ahL -amg -amg -anK -aos -aoZ -amg -aqv -aro -jxK -atE -auB -avB -awL -axK -ayM -aAj -aBg -aCp -aDu -aEs -aFr -aGb -aGU -aHE -aAL -aAL -aAL -aAL -aMR -aAL -aAL -aHE -aAL -aAL -aTO -aUK -xvO -aCZ -aGU -aAL -aZL -aAL -aAL -aAL -aAL -bfg -aAL -aAL -bhJ -bif -biO -bjL -bjL -bmg -bnv -bou -bnv -bou -bnv -bou -bvc -bwv -byf -bzG -bAQ -bBZ -bvc -bDi -bEn -bDi -bDi -bJj -npE -npE -npE -nSj -cXW -bPt -qyF -bQU -bva -bva -bva -lGv -bva -bva -bva -bva -bSw -bYF -bSw -bva -bva -gkX -bva -bva -pVD -kDY -fmh -rSH -bSo -gHZ -bBX -wfO -bDi -bBX -aht -nge -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(94,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agP -cnJ -ahq -ahq -ahM -ain -aiP -ajk -ajU -akQ -alB -amm -anb -anL -aot -apa -agP -aqw -arp -tTZ -atF -alv -alv -awM -axG -ayN -aAk -axG -aCq -axG -axG -axG -aGc -aGV -aHF -aIL -aDZ -aDZ -aDZ -aMS -aDZ -aDZ -aQB -aPR -aPR -aPR -aUL -wun -aEa -aHm -aEa -aZM -baV -aEa -aEa -aEa -bfh -aEa -bgZ -bhK -aIe -biP -bjL -bkX -bmh -bjL -bov -bpy -bqW -bsr -btU -bou -bww -byg -bzH -bAR -bCa -bvc -bEr -bFH -bEr -bEr -pQw -bEr -bEr -bEr -bEr -bEr -bPu -bva -rXT -bFZ -sUP -bTf -vGg -wdx -bVu -mzU -rzp -kpK -bDi -bZt -bva -oAW -bDi -pYC -bva -mHy -wzb -nYb -gVc -uiP -xCV -ehM -bDi -dWk -bBX -aht -adR -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(95,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -ahd -ahq -ahq -ahN -aio -agP -ajl -ajV -ajV -alC -amn -alC -alE -aou -apb -agP -aqx -arq -asD -atG -auC -auC -awN -axL -ayO -aAl -aBh -aBh -aDv -aBh -aBh -aGd -tHk -aHG -aIM -aJG -aKI -aLv -aMT -aKI -aPw -aQC -aKI -aKI -aTP -aUM -aVR -aKI -aXL -aYL -aZN -baW -aKI -aKI -beb -aKI -bge -bha -bhL -aHN -bjj -xQc -bkY -bmi -bjN -bow -bpz -bpz -bss -btV -bou -bwx -byh -bzI -bAS -bCb -bvc -bvc -bFI -bGO -bHU -bJk -bKn -bLz -bMF -bNL -bOC -bPv -bIZ -bOG -bva -bSs -bTg -bUa -jYh -bVv -bva -nQc -bXU -bDi -bZt -bZs -kRq -uMt -bME -fef -fmh -bNU -nYb -dSr -fmh -dJm -bDi -wfO -weL -bBX -aht -adR -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(96,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -ahd -ahq -cnT -ahq -ahd -agP -ajm -ajW -ajV -alD -amo -anc -anM -aou -apb -agQ -aqp -arp -asE -ajM -auD -avC -akA -axJ -axG -aAm -aBi -aBi -aBi -aBi -aBi -aBi -aBi -hqo -aDZ -aJH -aKJ -aLw -aMU -aKK -aKJ -aQD -aRI -coV -aKT -aUN -aVS -aVS -aXM -aVS -aVS -aXM -bbW -bbW -aVS -aVS -bgf -bhb -aDZ -aHN -biR -bjL -bkZ -bmj -bnw -box -bpA -bqX -bst -btW -bvd -bwy -byi -bzJ -bAT -bCc -bDl -bvc -bFJ -bGP -bHV -sEN -bKo -bLA -bMG -bNM -bOD -bPw -bQk -bQV -bRE -bSt -bTh -rJg -dAG -bVw -bva -iEQ -bXV -bDi -bNK -bva -bME -bDi -ksf -bva -bDi -ohR -nYb -ohR -reH -xCV -xaO -sww -bDi -bBX -aht -eNF -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(97,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -afJ -aby -aaa -agQ -ahd -ahq -ahq -ahq -ahd -agP -ajn -ajW -ajV -alE -amp -and -and -aov -apc -apP -aqy -arr -asC -ajM -auE -avD -awO -axG -axG -aAm -aBi -aCr -aDw -aEt -aFs -aGe -aGX -aHH -aDZ -aJI -aKK -aLx -aMV -aOt -aKJ -aKT -aKT -aKT -aKT -aUO -aVS -aWM -aXN -aVS -aZO -baX -bbX -bdg -bec -bfi -bgg -bhc -aAL -big -biS -bjL -bla -bmk -bjN -boy -bpB -bqY -bsu -btX -bve -bwz -byj -bzK -bAU -bCd -bDm -bvc -bFK -bGQ -bHX -bJm -bKn -bKn -bKn -bKn -bEr -bPx -bva -bOI -bFZ -bFZ -bFZ -lms -bva -bva -bva -bva -tvP -bDi -wRk -bva -bva -olc -bva -bva -rhr -dym -bDi -ycx -lBP -fvb -bBX -bDi -wfO -bBX -aht -eNF -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(98,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -agP -cnN -ahq -cnT -ahq -ahd -agP -ajo -ajX -ajV -alC -amn -alC -alE -aow -apd -agQ -aqz -ars -asy -atH -auF -avE -awP -axG -ayP -aAn -aBi -aCs -aDx -aEu -aFt -cou -aGY -aHI -aIN -aJJ -aKL -aLy -aMW -aOu -aKJ -aQE -aRJ -aSz -aSz -aUP -aVT -aWN -aXO -aYM -aZP -baY -aZP -bdh -bed -aVS -bgh -aJI -aDZ -aHN -biT -bjL -kSO -bjL -bjL -boz -bpB -bqZ -bsv -btY -bvc -bwA -byk -bzL -bAV -bCe -bDn -bvc -bFL -bGR -bHX -bJl -bKp -bLA -bMG -bNN -bOD -bPx -bIZ -bCz -bva -bSu -bTi -bUb -bva -bVy -ohR -hVx -oWw -bDi -bNS -bva -klo -bSv -new -bva -dye -nVU -bDi -qBv -bDi -pBD -bBX -bDi -fLG -bBX -aht -nge -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(99,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -ahd -ahq -ahq -ahq -aip -agP -ajp -ajY -ajV -alF -amq -ane -anN -aox -ape -agP -aqA -art -asF -ajM -auG -avF -awQ -axG -ayQ -axG -aBi -aCt -aDy -aDA -aDA -aGf -aGX -aHH -aIO -aJI -aKK -aLz -aMX -aOv -aKJ -aQF -aRK -aRL -aRL -aUQ -aVU -aWO -aXP -aVS -aZQ -baZ -bbY -bdi -bee -aVS -bgi -aJI -aDZ -aHN -bjL -bjL -blb -bml -bjL -bnv -bpC -bra -bsw -bnv -bvc -bvc -bvc -bvc -bvc -bvc -bvc -bvc -bAW -bAW -bHY -bGW -bKn -bLB -bMF -bNO -bOC -bPv -bIZ -bCz -bRF -bDi -bPC -bDi -bva -bPA -bSw -bSw -nNJ -bDi -nWP -bva -gjp -lHX -nDo -bva -sij -bDi -ydf -ihj -ssx -bva -bBX -bBX -bBX -bBX -aht -eNF -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(100,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -cnP -ahq -ahq -ahO -aiq -aiQ -ajq -ajZ -akR -alG -amr -anf -anO -aoy -apf -ajM -ajM -aru -asG -ajM -auH -avG -awR -axM -ayR -aAo -aBi -aCu -aDz -aDA -aDA -aGg -aBi -aHJ -aIO -aJI -aKJ -aKJ -aKJ -aKJ -aKJ -aQG -aRL -aRL -aRL -aUR -aVS -aVS -aVS -aVS -aVS -aVS -aVS -aVS -aVS -aVS -aaw -aJI -aDZ -aHN -bjL -bjP -blb -bjL -bnx -boA -bpD -brb -bsx -btZ -bvf -bwB -byl -bzM -bAW -bCf -bDo -bEs -bEr -bGS -bHZ -bGW -bKq -bKn -bKn -bKn -bEr -bPx -bva -bCz -bNK -bSv -bTj -bDi -bva -tRc -bVz -ftp -lQX -bDi -bva -bva -bva -bva -bva -bva -bva -bva -bva -bIZ -bva -bva -aht -aht -aht -aht -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(101,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agQ -cnQ -ahq -cnV -ahP -air -agP -agP -agP -cCS -alH -ams -alH -anP -agP -apg -ajM -aqB -arv -asH -atI -auI -avH -awR -awR -awR -awR -aBj -aCv -aDz -aDA -aDA -aGh -aBi -aHK -aIO -aJI -aKM -aLA -aMY -aKP -aNm -aQG -aRL -aSA -aTQ -aUS -aRL -aWP -aXQ -aYN -aZR -aYN -aYN -aYN -aXQ -bfj -bdm -aJI -aDZ -bih -biW -wUf -wUf -bmn -iGJ -bjQ -bpE -brc -bsy -bsy -bvg -bwC -bym -bzN -bAX -bCg -bDp -bEt -bFM -bGT -bIa -cBK -bKr -bLC -bMH -bNP -bOE -bPy -bQl -bQW -bva -bSw -bPC -bUc -bva -bva -bva -bva -nNJ -bDi -bOB -bSw -bDi -bDi -bDi -bIZ -aaa -aaa -aaa -aaa -aaa -eNF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(102,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -agP -cnQ -ahq -ahq -ahQ -ais -agP -ajr -aiR -akT -aiR -amt -aiR -anQ -aiR -aph -ajM -aqC -arw -asI -aqC -auH -avI -auH -axN -ayS -aAp -aBj -aCw -aDA -aDy -aDA -aGi -aBi -aHL -aIP -aJK -aKN -aLB -aMZ -aKP -aPx -aQH -aRM -aSB -aTR -aUT -aRL -aWQ -aXR -aXS -aZS -bba -aZS -aXS -bef -bfk -bdm -bhd -aBI -bii -biX -bjR -blc -biX -bny -aax -bpF -brd -bsz -bjQ -bvh -bwD -byn -bzO -bAY -bCh -bDq -bEu -bFN -bGU -bIb -bJn -bKs -bKs -bMI -bNQ -bOC -bPz -bIZ -pwj -bva -bSx -bTk -bUd -bva -bDi -bDi -wIv -qOH -fpT -fpT -fpT -wNq -bva -gMO -bBX -aaa -aaa -aaa -aaa -aaa -eNF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(103,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -agP -agQ -agQ -agQ -agP -agP -agP -ajs -aiR -akU -alI -amu -ang -anR -aiR -aph -ajM -aqD -arx -asJ -aqC -auH -avJ -awS -axO -ayT -aAq -aBj -vTL -aDA -aEv -aFu -lnn -aGZ -aHM -aIQ -aJL -aKO -aLC -aNa -aKP -aPy -aQI -aRL -aSC -aTS -aUU -aRL -aWQ -aXS -aYO -aZT -aZT -aZT -bdj -beg -bfl -bdm -aJI -aDZ -bij -biY -rvH -biY -biY -biY -biY -bpG -biY -bsA -bua -bvi -bwE -bsA -bsA -bsA -bsA -bsA -bjc -bFO -bFO -bFO -bFO -bKt -qar -bGW -bNR -bAW -bva -bva -pwj -bva -bva -bva -bva -bva -jXV -bva -bva -qYi -bBX -bBX -bBX -uUQ -bBX -fdS -bBX -bBX -aaa -aaa -aaa -aaa -eNF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(104,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -abI -abI -abI -abI -ajs -aka -akV -alJ -amv -anh -anS -aiR -api -ajM -aqC -ary -asK -aqC -auH -avK -auH -axP -ayU -aAr -aBj -aCx -oyF -oyF -oyF -aGj -onX -qXH -aIO -aJI -aKP -aLD -aNb -aKP -aPz -aQJ -aRL -aau -aTT -aXS -aRL -aWR -aXT -aYO -aZU -bbb -bbZ -bdk -beh -bfl -bdm -aJI -aDZ -bik -biY -bjS -bld -bmp -bld -bld -bpH -biY -bsB -bub -bvj -bwF -byo -bzP -bCj -bCi -bDr -bEv -bFP -bGV -bIc -bFO -bKu -bLE -bMJ -bEr -bEr -bPA -bNX -bQX -bKH -bKH -bKH -bKH -bKH -bKH -iyg -lIr -bQY -bXk -mbe -scz -kSF -kDJ -oYj -uMo -bXk -bXk -bXk -bXk -bXk -bXk -bXk -bXk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(105,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ajs -akb -akW -alK -amw -ani -jvi -aiR -aph -ajM -aqC -arz -asL -atJ -auH -auH -auH -axQ -ayV -aAs -aBj -gkR -aDB -aEw -aFv -ulu -aGX -jYe -aIO -aJI -aKQ -aKQ -aKQ -aKQ -aLL -aQK -aRL -aSE -aTU -aXU -aVV -aWS -aXU -aYP -aZV -bbc -bbc -bdl -bei -bfm -bgj -bhe -aDZ -bil -biY -bjT -ble -bmq -bmq -boC -bpI -biY -bsC -buc -jsj -bwG -byp -bzQ -bzQ -ioj -bsA -bEw -naS -bkh -bId -bFO -bEr -bEr -bEr -bEr -bOF -bDz -bDz -bCD -bDi -bUe -bTl -bBX -bBX -bBX -bBX -qXq -bBX -bXk -bZx -eQN -tcY -cam -cam -sjC -bXk -mci -cbX -ceq -mhl -ceq -ceq -bXk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(106,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -afJ -aaa -aaa -abI -ajs -akc -akX -alL -amx -anj -anU -aiR -apj -ajM -ajM -ajM -ajM -ajM -ajM -avL -auH -auH -ayW -auH -awR -awR -awR -awR -awR -awR -aAN -gNG -aIO -aJM -aKQ -aLE -aNc -aKQ -aLL -aQL -aRL -aSF -aXS -aXS -aRL -aWT -aXV -aXS -aZW -aXS -bca -aXS -bej -bfn -bdm -aJI -aDZ -bik -biY -bjU -bld -bld -bld -bld -bpJ -biY -bsC -bud -bvk -bwH -bua -bzR -bzR -bBb -bDr -bEx -bkh -bGX -bIe -bjc -bKv -bLF -bjc -bNS -bCz -bPB -bPB -bPB -bPB -bPB -bPB -bPB -uwX -uMe -lTC -bXd -cif -bXk -vRm -bpL -fQf -cbW -cbd -cdI -cri -cbX -cbX -cbV -cbV -ceq -ceq -bXk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(107,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ajs -akd -akX -alJ -amy -alJ -anV -aiR -apk -apQ -aqE -aqE -aqE -atK -auJ -aqE -awT -axR -ayX -aAt -aBk -aCy -aDC -aEx -aFw -awR -aHb -jYe -aIQ -aJL -aKR -aLF -aNd -wBg -aLL -aQM -aRL -aSG -aTW -aUW -aRL -kEW -aXW -aXS -aZX -bbd -aRL -bdm -bek -bdm -aRL -bhd -bhM -bim -biZ -bjV -blf -blf -blf -blf -bpK -biY -bsD -buc -kQy -bwI -byo -bzS -eFj -bCl -bsA -bEy -bFQ -buh -bIf -bjc -bKw -bLG -bjc -bNT -bCz -bPB -bQm -bQZ -bQZ -bQZ -bTm -bPB -bUG -uMe -hzc -bXe -krU -bXk -kyv -lWJ -iAx -bZA -cam -ous -bXk -ccR -cbX -ccQ -ccQ -ccQ -ccQ -bXk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -cmt -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(108,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ajs -ake -akX -alM -amz -ank -anT -ajs -apl -aoz -aqF -arA -arA -arA -arA -avM -awR -axS -ayY -aAu -aBl -aCz -aDD -aza -aza -awR -aHc -aHO -aIP -aJK -aKS -aLG -aNe -aKQ -aPA -aQN -aRN -aRN -aRN -aRN -aRN -aRN -aXX -aXS -aXS -pWT -bcb -bdn -bel -bdn -kEM -aJI -aDZ -bik -biY -bjW -blg -bmr -bnz -boD -bpH -biY -bsE -bue -tix -cSJ -bsA -bzT -bBc -bCm -bDr -bEz -wtE -buh -bIg -bjc -bKx -bLH -bjc -bNU -bCz -bPB -bQn -cCP -cCF -cCH -bTn -bPB -uwX -wMM -fzu -wiB -reV -bXk -sKa -iFI -oUa -vjd -oAw -cdK -bXk -bXk -bXk -bXk -bXk -bXk -bXk -bXk -aht -aht -aht -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -clw -clG -clG -clG -clw -clw -clw -clw -clw -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cny -adR -abI -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(109,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiR -ajs -ajs -akZ -alN -alN -alN -anW -ajs -apm -apR -aqG -arB -asM -atL -auK -avN -awU -axT -ayZ -aAv -aBm -aCA -aDE -aEy -aFx -awR -awR -aHP -aIO -aJN -aKQ -aKQ -aKQ -aKQ -aLL -aQN -aRN -aRN -aTX -aUX -aVW -aRN -aXY -aXS -aXS -pWT -bcc -aDZ -bem -aDZ -aDZ -aJI -aDZ -bik -biY -biY -biY -biY -biY -biY -bpM -biY -bsA -bua -rar -bwE -bsA -bzU -bBd -byo -bsA -bkb -bFR -bGY -bkb -bjc -bKy -bLI -bjc -bjc -bCz -bPB -bQo -cCF -bRa -bSy -bTo -bPB -bUH -bUH -bUH -bUH -bUH -bXk -bTE -cae -eta -mmv -cae -bTE -bXk -ceT -cfr -cfO -cgr -cgP -cgP -cgP -cgP -cgP -cig -cgP -cig -cgP -cig -cgP -cgP -cgP -cgP -cig -cgP -cgP -cgP -cgP -cig -cgP -cgP -cgP -cgP -cig -cgP -cgP -cgP -clC -clH -clP -kFm -clw -cmf -cmm -cmu -clG -cmB -xFl -cmL -cmR -cmV -cna -cmR -cnj -cmK -cnr -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(110,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aiR -abI -abI -abI -abI -abI -aoz -apn -aoz -aqG -arC -asN -atM -auL -avO -awV -axU -aza -aAw -aBn -aCB -aDE -aEz -aFx -aGk -awR -aHQ -aIO -aJO -aKT -aLH -aNf -aKT -aLL -aQO -aRO -aSH -aTY -aUY -aVX -aRN -aXZ -aYQ -aXS -ttS -bcd -bdo -ben -bfo -bfo -aJZ -aAL -bin -bja -bjX -blh -bms -bnA -boE -bpN -bre -bsF -bkh -jUV -bwK -byr -bzV -bBe -bCn -bDs -bEA -bFS -bGZ -bCn -bJo -bGZ -bLJ -bMK -bjc -bCz -bPB -bQp -cCH -cCF -cCP -bTp -bPB -bUI -bVD -bWn -bXf -bUH -bYI -jrG -caf -uun -cbY -cdc -gnq -bXk -ceU -eVy -bXk -bXk -bXk -bXk -tue -pjH -pjH -pjH -roc -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -mVM -tfw -pjH -pjH -uHG -clw -clw -clw -clQ -clX -rsZ -clw -cmg -cmn -cmv -clG -cmG -gpI -cmM -cmK -cmW -cnb -cmK -cnk -cmK -cns -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(111,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aoz -ahr -aoz -aqG -arD -asO -atN -auK -avP -awW -axV -azb -aAx -aBo -aCB -aDF -aEA -aFy -aGl -awR -aHR -aIR -aJP -aKT -aLI -aNg -aKT -aPB -aQP -aRN -aRN -aTZ -aSK -aSK -aRN -aRN -bgk -gam -aZZ -aRN -aRN -beo -aRN -aRN -aJI -aDZ -bim -bjb -bjY -bli -bmt -bnB -boF -bpO -brf -bkg -buf -bvm -bwL -bys -bzW -bBf -bCo -bkh -bEB -bkh -buh -bIh -bkh -bKz -bnH -boN -cBL -bCz -bPB -bQq -bRb -bRG -bSz -bTq -bPB -bUJ -bVE -bWo -bXg -bXY -bYJ -bZy -bZy -cbc -cbZ -bZy -cdL -cer -ceV -cfs -dWp -cgs -cgQ -chv -mKk -cdm -cdm -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -clz -clA -clD -clJ -clR -clY -cmd -cmh -uzn -cmo -clG -clG -clG -gpI -cmN -cmK -cmK -cmK -cmK -cnl -cmK -cnt -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(112,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cdm -cdm -aqG -arE -arA -atO -auM -avQ -awW -axW -azc -aAy -aBp -aCC -aDG -aBm -aFz -aGm -awR -aHQ -aIO -aJO -aKT -aPz -aLL -aOw -aLL -aQP -aRN -aSI -aSK -aUZ -aSK -aWU -aRN -aYR -aYS -aYS -cpq -cpu -cpw -bfp -bgk -aJI -aDZ -bik -bja -bjZ -blj -bmu -bnA -boG -bpP -brg -bsG -brf -bvn -aaz -byt -bzX -bpP -bCp -bpP -bEC -bFT -bHa -bIi -bJp -bKA -bLK -bMM -bjc -bCz -bPB -bPB -bRc -bRH -bSA -bPB -bPB -bUK -bVG -bWp -bXh -bXZ -bYK -bZz -nAY -cbd -nRM -cam -cdM -bXq -xmE -ymb -bXk -ore -qWG -bXk -paU -dSp -cdm -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -iBJ -clB -hQz -clB -clS -clZ -tlw -cme -nMG -cmp -cmw -cmF -opz -qYS -cmK -cmK -cmX -cnc -cmK -cmK -cmK -cnu -cmB -abI -adR -abI -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(113,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -apS -ala -arF -arA -atP -auN -avR -awX -awU -awR -awR -awR -aCD -aDH -awR -awR -awR -awR -aHS -aIS -aJO -aKT -aLK -aNh -aKT -aPC -aQP -aRN -aSJ -aSK -aVa -aVY -aWV -aYa -aYS -aYS -bbg -cpr -bcf -beq -cpy -bgl -bhe -aDZ -bik -bja -bka -blk -bmv -bja -bjc -bpQ -bjc -bjc -bug -bvo -bwN -byu -bzY -wLo -bCq -wLo -bzY -bFU -bFU -bIj -bJq -bIj -bFU -bFU -bjc -bCz -bPC -bPB -bRd -bRI -bSB -bTr -bPB -bUL -cqV -bWq -bXi -bYa -bYL -bZA -caw -cbe -cca -cam -qtO -bXk -bXk -bXk -svA -mjK -mjK -mjK -aap -aac -aac -bXk -shH -shH -shH -shH -shH -shH -shH -shH -fon -fon -mau -fon -aht -aht -mau -fon -fon -aht -aht -ouv -clw -clw -clw -clT -cma -clL -clw -cmj -cmq -clG -clG -clG -cmK -cmO -cmK -cmK -cmK -cmK -cnm -cmK -cnv -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(114,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -apo -abI -aqH -arG -asP -atQ -auO -avS -awY -axX -azd -aAz -aBq -aCE -aDI -aEB -aEB -aEB -aHd -aHT -aIT -aJQ -aKT -aKT -aKT -aKT -aPD -aQQ -aRN -aSK -aUa -aVb -aVZ -aWW -aRN -bce -aYS -cpm -bcg -bdp -ber -cpz -bgk -aJI -aDZ -bik -bjc -bkb -bkb -bkb -bjc -boH -bkh -brh -bjd -cqm -bvl -bwO -byv -bzZ -bBg -bCr -bDt -bED -bFU -bHb -bIk -bJr -bKB -bKB -bFU -bNV -bCz -bPD -bPB -bRe -bRJ -bSC -bTs -bPB -bUM -bVH -bWr -bXj -qGZ -bYQ -bZD -caj -cbf -ccb -cah -cdO -ioF -ceX -aah -cfS -fFv -fmL -gXZ -kmd -lXJ -lXJ -bXk -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rnr -clE -xnm -clM -clU -cmb -mxy -clw -cmk -cmr -cmx -clG -cmH -cmK -cmP -cmK -cmY -cnd -cmK -cnn -cmK -cnw -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(115,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alO -aaa -aaa -aqI -arH -asQ -atR -auP -avT -awZ -axY -aze -aAA -aBr -aCF -aDJ -aEC -aDJ -aAA -myu -aHU -aIV -aJS -aKU -aNj -aNi -aOx -aNj -aQR -aRN -aSL -aRN -aRN -aWa -aRN -aRN -rxV -aYS -cpn -bch -bdq -bes -cpA -bgk -aJI -aDZ -bik -bjc -bkc -bll -bmw -bnC -boI -bpR -bri -bjd -cqm -bvl -bwP -byu -bAa -bBh -bCs -bDu -bEE -bFU -bHc -bIl -bJs -bKC -bLL -bFU -bNW -bOH -bPE -bQr -bRf -bRK -bSD -bQr -bQr -bUH -bUH -bUH -bUH -bYb -bYN -bZF -cak -cbg -cam -cam -cam -cam -mwG -nAs -cfT -wcs -ggg -qbp -qbp -gEo -dMG -bXk -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -clw -clN -qxq -clV -cmc -mDW -clw -cml -cms -cmy -clG -cmB -cmK -cmQ -cmU -cmZ -cne -cmU -cno -cmK -cnx -cmB -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(116,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anl -aht -aaa -aaa -aqI -arI -asR -atS -auQ -avU -axa -axZ -azf -aAB -aAB -aAB -aAB -aAB -aAB -arA -arA -aHV -aIO -aJO -aKT -aKT -aKT -aOy -aLL -aLL -aRP -aSM -aUb -aVc -aWb -aWX -aYb -aYV -cpl -bcf -cps -aYS -bep -cpB -bgk -aJI -aDZ -bik -bjd -bkd -bkh -cqa -bnD -boJ -bpS -bjd -aay -cqm -bvl -bwP -byv -bAb -bBi -bCt -bDv -bEF -bFU -bHd -bIm -bJr -bKD -bKD -bFU -bNX -bCz -bPE -bQs -bRg -bRL -bSE -bTt -bUf -bQr -bVI -bWs -bXk -bYc -bYO -bZA -xhI -cbh -cbh -cbh -cbh -cbh -hjD -aai -cfU -tIS -iCs -rPg -rPg -cBR -iCs -bXk -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -clw -clw -clw -clw -clw -clw -clw -clw -clw -clw -clw -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cnz -adR -abI -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(117,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anl -aaa -aht -aaa -aaa -aqI -arJ -asR -asS -asS -asS -asS -aya -azg -aAB -aBs -aCG -aDK -aED -aAB -aGn -axi -aHW -aIO -aJO -aAN -aGn -aKT -coF -aPE -aPE -aPE -aPE -aPE -qEN -bdv -aWY -aRN -aYU -bab -bbi -bbh -bdr -cpx -aRN -aRN -aJI -aDZ -bij -bje -bke -blm -bpT -bpT -bpT -bpT -bpT -bsH -blo -bvl -cqs -byu -bAc -bBj -bCu -bDw -bEG -bFU -bFU -bIn -bJt -qni -bFU -bFU -bFU -hZB -bPF -bTu -bRh -bRM -bSF -bTu -bUg -bUN -bVJ -bWt -bXk -bYd -bYP -bZF -rTd -wDl -vxr -irM -irM -qFu -cet -ulY -aak -cgu -cgU -aam -aaq -aac -jzE -bXk -bXk -bXk -bXk -bXk -aaa -fon -fon -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -cmz -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(118,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amA -aht -aht -aht -aht -abI -aqJ -arK -asS -atT -auR -avV -axb -ayb -azh -aAB -aBt -aCH -aCK -aEE -aAB -aGo -aHf -aHX -aIW -coz -aKV -abI -aKT -coG -aPE -aQS -aRQ -aSN -aUc -aPE -aWd -aXb -aRN -aYT -bac -baa -baa -baa -beu -bgk -bgn -aJI -aDZ -aHN -bjd -bkf -bln -bmx -bnE -boK -bpU -bpU -bsI -bui -bvp -bwQ -byv -bAd -bBk -bCv -bDx -bEH -bFU -bFU -bIo -bJu -bKE -bLM -bMN -bFU -bCz -bPE -bQu -bRi -bRN -bSG -bTv -bUh -bUO -bVK -bWu -bXk -bYe -bYQ -bZA -can -cbi -ccc -aac -cdR -aaf -bXk -bXk -sWW -cgv -lXb -cgv -uaP -cgv -ukp -cgV -cgv -cgv -gQf -bXk -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -abN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -adR -aaa -adR -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(119,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acO -aby -aby -aby -aby -aby -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amB -aht -aaa -aaa -aaa -aaa -aqI -arL -asR -atT -auR -avW -axb -ayb -azi -aAB -aBu -aCI -aDL -aEF -aAB -aGp -aHf -aHX -aIW -coz -aKV -abI -aKT -coH -aPE -aQT -aRR -aSO -aUd -aVd -aWe -aXb -aRN -aYX -bad -bbl -bbl -bbl -bbl -aRN -bgo -bhd -aBI -aHG -bjf -cpX -cpZ -cqc -bnF -boL -bpV -bpV -bpY -bpY -bvq -bpX -bpY -bpY -bpY -bCw -bDy -bDy -bDy -bFU -bIp -bJv -bJx -bLN -bMO -bFU -bCz -bPE -bQv -bRj -bRO -bSH -bTw -bQr -bQr -bQr -bQr -bXk -bTE -bYR -bZA -can -cbj -aac -cbX -wcs -iyJ -cfa -aac -twv -hoS -sWj -dnS -hSC -jTU -fZK -pgH -pgH -uRk -ciG -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(120,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -abI -aaa -aaa -aaa -abI -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aqI -arM -asR -atU -auR -avX -axb -ayb -azj -aAC -aBv -aCJ -aDM -aEG -aAB -aGq -aHf -aHY -aIX -coB -aKV -abI -aKT -coH -aPE -aQU -aRS -aSP -aSP -aPE -aWf -aXb -aPE -aYY -bae -bbm -bae -bcm -bae -cpC -bgp -aJI -bhN -big -bjg -cpY -cqa -bmy -bnF -boM -bpV -brj -bsJ -buj -bvr -bwS -byw -bAe -bpY -bCx -bDy -bEI -bFV -bFU -bIq -bJw -bKF -bLO -bMP -bFU -bCz -bPE -bQw -bRj -bRP -bSH -bTx -bQr -bUP -bVL -bWv -bXl -bYf -bYS -bZA -can -qpS -aae -ccX -ccX -ceu -cbX -cfu -tlN -ncm -cCI -aan -aar -aao -meF -oKv -wbB -xzR -hQC -bXk -aht -fon -shH -fon -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(121,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -acP -acP -acP -acP -acP -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aqI -arN -asR -atT -auR -avY -axb -ayb -azk -aAB -aBw -aCK -aDL -aEH -aAB -aGr -aHf -aHX -aIW -coz -aKV -abI -aKT -coJ -aPE -aQV -aRT -aSQ -aUe -cpa -aWg -aXc -aPE -cpg -bah -bag -bah -bag -bex -bfr -bgq -aJI -aDZ -bih -bjh -bki -blp -bmz -bnG -boN -bpW -dHZ -bsK -buk -bvs -bwT -byx -bAf -bBl -bCy -bDy -bEJ -bFW -bHe -bIr -bJx -bJx -bLP -bMQ -bFU -bCz -bPE -bQx -bRj -bRQ -bSH -bTy -bQr -bUQ -bVM -bWw -bXm -bYg -bYT -bZB -caq -cbk -aac -ccY -cdT -ccY -cbX -aac -vlC -iej -qeY -fyO -fyO -fyO -qeY -oKv -wbB -wfP -hQC -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(122,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -acm -aaa -aaa -aaa -abI -aaa -acP -acP -acP -acP -adG -adS -adS -adS -adS -adS -aeJ -aeY -aft -afK -acP -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aht -aht -aht -abI -aqJ -arO -asS -atT -auR -avZ -axb -ayb -azh -aAB -aBx -aCL -aCK -aEE -aAB -aGs -aHf -aHX -aIY -coz -aKV -abI -aKT -coJ -aPE -aPE -aRU -aPE -aPE -aPE -aWh -aXd -aYd -aYZ -bag -cpo -cpt -cpv -bag -aPE -bgr -aJI -aDZ -aHN -bjd -bjc -bke -bkh -cqf -boN -bpX -brl -bsL -bul -bwU -bsK -bsK -bAg -bpY -bCz -bDy -bEK -bFX -bFU -bIs -bJy -bKG -bLQ -bMR -bFU -bCz -bPE -bQy -bRk -bRR -bSI -bTz -bQr -bUR -bVM -bWx -bXn -bYh -bYU -bZE -car -mgz -aac -cbX -wcs -wcs -cfd -bXk -tlN -ncm -lUO -mpd -hKp -hKp -cit -qeY -puw -vBE -hQC -bXk -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(123,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -acP -acW -adh -ads -adH -adT -aee -aee -aee -aev -kjK -aeZ -afu -afL -acP -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amB -aht -aaa -aaa -aaa -aaa -aqI -arP -asR -asS -asS -asS -asS -aya -azl -aAB -aBs -aCM -aDN -aEI -aAB -aGn -axi -aHZ -aDZ -aJO -aAN -aGn -aKT -aOz -aPF -aQW -aRV -aSR -aPE -aPE -cpe -aPE -aPE -aZa -bah -bag -bah -bdw -bey -cpC -bgs -aJI -aDZ -aHN -bji -bjd -blq -bkh -bkh -boN -bpW -brk -bsM -bum -bvt -bwV -byz -ooh -bpY -bCA -bDy -bEL -bDy -bFU -bFU -bJz -bFU -bFU -bFU -bFU -bCz -bPE -bQz -bRl -bRS -bSJ -bTA -bQr -bUS -bVM -bWy -bXo -bYi -bYV -bZA -cam -ccW -bXk -cda -wcs -wcs -wcs -eyj -eAH -lnr -qeY -fBZ -fBZ -fBZ -cgY -ciI -tdL -dHr -hQC -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(124,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -abI -abO -abV -acc -ach -abY -abW -acn -acw -abY -abV -acc -acG -acQ -acX -adi -adt -adI -adU -aef -aef -aef -aew -aeK -afa -afv -afM -acP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aqI -arQ -asR -atV -auS -awa -axc -ayc -azm -aAB -aAB -aCN -aAB -aAB -aAB -arA -arA -aHV -aDZ -aJO -aKT -aKT -aKT -aOA -aPG -aQX -aRW -aSS -aUg -aVf -aWi -mjn -aYe -aZb -bag -bbr -bbr -bdv -bez -cpC -bgp -bhf -cpH -cpN -cpT -bjd -blr -cqd -cqd -boO -bpV -brm -bsN -bun -gGA -bwW -byA -bAi -bpY -bCB -bDz -bEM -bFY -bDz -bDz -bJA -bKH -bKH -bKH -bNY -bOJ -bPE -bQA -bRm -bRT -bSK -bTB -bQr -bUT -bVN -bWz -bVN -bYf -bYW -oWu -cam -vli -ckJ -cey -cdW -wcs -cdW -eyj -kTR -mEu -wMX -dFJ -wYK -dFJ -uzh -nUQ -fym -hon -hQC -bXk -aht -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(125,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abW -acd -ace -ace -ace -aco -acx -acx -acz -acd -acH -acP -acY -adj -adu -adJ -adV -adV -cnD -adV -adV -aeL -afb -acP -acP -acP -agq -adX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aqI -arR -asT -atW -atW -atW -axd -axY -azn -aAD -aBr -axZ -aDO -aEJ -aDO -aAA -aHe -aHU -aIZ -aJT -aKY -aKY -aKY -aKY -aKY -aKY -aKY -coW -aPE -aVg -aWj -bah -aYf -aZc -bah -bbo -bco -bdw -beA -aPE -aPE -aJI -cpI -cpO -bjk -bje -bjd -bmA -bmA -bjd -bpY -bpY -bpY -bpY -pxD -jZG -bpY -bpY -bpY -bNZ -bva -bva -bva -bva -bva -bva -bva -bva -bva -bNZ -bva -bPE -bPE -bPE -bRU -bPE -bPE -bQr -bUU -bUU -bUU -bUU -bUT -bYX -bZA -cam -lfx -bXk -pCo -wcs -wcs -wcs -eyj -qkM -miw -qeY -prQ -prQ -prQ -dgj -psd -fxC -dZj -hQC -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(126,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abX -ace -ace -abO -abO -acp -abO -abO -acA -acx -acI -acP -acP -acP -adv -adK -adW -aeg -cnE -aeg -aex -aeM -afc -acP -afN -age -agr -adX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aht -aht -aht -abI -aqK -arG -asU -atX -auT -awb -axe -ayd -azo -aAE -aBy -aCO -aDP -aEK -aEK -aEK -aHg -aIa -aJa -aJQ -aKZ -aLQ -aNp -aOB -aPH -aQY -aKY -coW -aPE -aVh -bah -bah -aYg -cph -bag -bbp -bbp -bdv -bag -bfs -bgt -bhd -cpJ -cpP -aBI -aEY -bls -aBI -aBI -bmB -vKq -nTr -gDR -vzA -bvu -hIZ -tqO -mqp -cKV -iwe -qTV -xDj -blt -jCv -bOK -bEN -bKI -bEN -bHf -bOa -bOK -bPG -bQB -bBm -bRV -bSL -bTC -bUi -bUV -bVO -bWA -mCe -bYj -bYQ -bZA -cam -mgz -aac -tlV -wcs -wcs -dEy -bXk -tlN -ncm -puw -fyF -cZt -cZt -fjD -qeY -iTF -slJ -hQC -bXk -aht -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(127,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abY -ace -abO -abO -abO -acp -abO -abO -abO -acB -acJ -abO -acZ -adk -adw -adL -adV -adV -cnD -adV -adV -aeN -afd -afw -afO -agf -ags -adX -adX -adX -adX -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aaa -aaa -arA -arA -arA -arA -arA -aye -arA -aAF -aAH -aAH -aDQ -aAH -aAH -axi -axi -aIb -aJb -aJU -aLa -aLR -aNq -aNq -aPI -aQZ -aKY -coW -aPE -aVi -bah -aXh -aYg -aZd -beB -bbq -beB -bdx -beB -bft -bgu -aJZ -bhO -bio -aDZ -aGV -aDZ -aDZ -aDZ -jcT -xje -tTl -tTl -tTl -gkS -tTl -tTl -tTl -koz -dgg -phJ -phJ -lJI -bAk -bIt -bJB -bKJ -bJB -bMS -bOb -bJB -bPH -bQC -bJB -bRW -bSM -bTC -bUj -bUW -bVP -bWB -mCe -bYk -wjm -bZF -cbm -mgz -aac -oHa -oHa -eWi -cbX -aac -loL -cgx -qeY -fyO -fyO -fyO -qeY -cBS -cjt -kaR -hQC -bXk -aaa -fon -shH -fon -aht -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(128,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abY -ace -abO -abO -acj -acq -abO -abO -abO -acC -acK -acR -ada -adl -adx -adL -adX -aeh -aeh -aeh -adX -aeN -afe -afx -afx -cnC -adX -adX -adX -adX -alb -aaa -aaa -aaa -aaa -aaa -aaa -aht -amB -aht -aaa -aaa -aaa -aaa -aaa -ahi -atY -bcN -auU -atY -lQQ -ayf -lQQ -aAF -aBz -aCP -aDR -aEL -aAH -aGt -aAN -aHV -aDZ -aJO -aKZ -aLS -aNr -aOC -aPJ -aRa -aRX -aST -aPE -cpb -bah -bah -aYg -cpi -bag -bbr -bbr -bah -bag -bfs -bgt -aJI -cpK -cpQ -aDZ -aGV -blu -aDZ -aDZ -bjm -mhn -cqi -cqi -cqi -cqi -cqi -imE -kYM -mfC -fdQ -bmD -bmD -eRp -bAl -bIu -bJC -bKK -bCC -bMT -bOc -bmD -bPI -bmD -bRn -bRX -bSM -bTC -bUk -bUX -bVQ -bWC -mCe -bYl -bYO -bZA -cam -lrM -aae -cAQ -cAQ -cLw -cbX -cfu -jBn -oxw -meF -aao -aao -aas -cCI -cBS -iLh -liR -hQC -bXk -aht -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(129,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -abJ -abO -abY -acf -abO -abO -ack -acr -acy -abO -abO -acD -acL -acS -adb -adm -ady -adM -adY -aei -aei -aei -aey -aeO -aff -afy -aab -bIK -agt -agD -agR -ahh -ahi -aaa -aaa -aaa -aaa -aaa -aaa -aht -amC -aht -aaa -aaa -aaa -aaa -aaa -ahi -baH -auV -auV -awc -axg -ayg -azp -aAG -aBA -aCQ -aDS -pHo -aAH -aGu -aHh -aHV -aDZ -aJV -aLb -aLT -aNs -aNs -aPK -aRb -aKY -aQN -aPE -cpc -aWl -beB -aYh -cpj -bah -bbs -bcq -bag -beC -aPE -aPE -bhg -cpL -cpR -bjl -bGa -bKM -blt -cqh -bKM -cCl -cCl -cCl -tJr -tzH -tzH -byD -bAm -dhz -uxP -bDA -bEQ -bGa -bHp -sYQ -bJD -bBo -bBo -bMU -bmC -bOL -bPJ -bOL -bRo -bRX -bSN -bTD -bTC -bUY -bVR -bWD -bWD -bTE -bYY -bZA -cam -cbn -aac -cbX -wcs -cfP -cff -aac -cfX -vVO -iop -kWQ -oXq -qpd -tkL -tOD -tOD -ikO -hQC -bXk -aaa -fon -shH -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(130,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abY -ace -abO -abO -acl -acs -abO -abO -abO -acE -abY -acT -adc -adn -adz -adL -adX -aeh -aeh -aeh -adX -aeN -afg -afz -afz -agg -adX -adX -adX -adX -alb -aaa -aaa -aaa -aaa -aaa -aaa -aht -amD -aht -aaa -aaa -aaa -aaa -aaa -ahi -atY -atY -atY -atY -axh -axh -axh -aAH -aBB -aCR -aDT -aEM -aFA -aGv -aHi -aHV -aDZ -aJO -aKZ -aLU -aNt -aOD -aPL -aRc -aKY -aQN -aPE -aVj -aWm -bck -aYi -cpk -bag -bbp -bbp -bah -beD -cpC -bgv -aJI -cpM -cpS -cpU -bKM -blv -bmC -cqi -boP -bqb -pYw -gFo -cSK -duF -bxa -byE -bBp -wfG -bBp -bBp -bBp -bBp -bvD -bIv -cqz -bKM -bLR -bMV -bOd -bOL -bPK -bOL -bRp -bRY -bSM -pps -bUl -bUZ -bVS -bWE -bXk -bYm -bYZ -bZG -cax -cbo -ccc -aac -cdR -aag -bXq -bXq -cfY -xNy -smv -xNy -hGB -hSt -civ -civ -vsw -qRl -oKJ -bXk -aht -fon -fon -fon -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(131,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abY -ace -abO -abO -abO -act -abO -abO -abO -acB -acM -abO -add -ado -adA -adL -adZ -adZ -cnG -adZ -adZ -aeP -afh -afA -afQ -agf -ags -adX -adX -adX -adX -aFj -aht -aht -aht -aht -aht -alO -aht -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aAH -aBC -aCS -aDU -aEN -aAH -aGw -aHj -aHV -aDZ -aJW -aKY -aLV -aLV -aLV -aLV -aKY -aKY -aQN -aPE -aPE -aPE -aPE -aPE -aZf -bah -bag -bah -bag -beE -cpC -bgw -aJI -aDZ -aHN -bjn -bKM -blw -bmC -cqi -boQ -cCl -brq -byF -cCt -byF -bxc -nIU -bAo -bBq -bCE -bDB -bER -bBp -bHh -bIv -cqz -bBo -bLS -bmC -bmC -bOL -bPL -bOL -bRo -bRZ -bSO -bTF -bUm -bVa -bVT -bWF -bXp -bYn -bZa -bZF -cal -cbp -cci -kTj -kTj -qhE -loz -frj -aal -eyj -uIB -eyj -eyj -uIB -eyj -eyj -bXk -bXk -bXk -bXk -aht -aht -aht -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(132,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abV -ace -ace -abO -abO -act -abO -abO -ace -ace -ach -acU -acU -acU -adB -adN -aea -aej -cnH -aej -aez -aeQ -afi -acU -afR -agh -agu -agE -agS -agS -ahs -ahR -ahs -ahs -ahs -ahR -ala -aht -aaa -aht -aaa -aaa -app -apT -apT -apT -apT -apT -apT -aaa -aht -aaa -aaa -aAH -aBD -aCS -aDV -aEO -aAH -aGw -aHj -aHV -aDZ -aJR -anX -aLW -aNu -aOE -aPM -anX -aPB -aQN -aUf -aVk -aWn -aXk -aYj -aZg -ban -bbt -bcr -bck -beF -aPE -bgx -aJI -aDZ -aHN -bKM -bBo -blx -bmC -bnI -boR -cCl -brr -bsR -bup -bvw -bxd -byG -bAp -bBr -bCF -bDC -bES -bBp -bHi -bIv -cqz -bBo -bLT -bmC -bmC -bmC -bmC -bmC -bRo -bmC -bQD -pps -bUn -bVb -bVU -bWG -bXq -bYo -hXK -bZI -hXK -cbq -cbd -cam -cam -cam -haA -aaj -upc -wIo -hyh -upc -voh -pBJ -wIo -voh -cdm -aaa -aaa -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(133,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abW -acd -ace -ace -ace -ace -ace -ace -ace -acd -acw -acU -ade -adp -adC -adO -adZ -adZ -cnG -adZ -adZ -aeR -afj -acU -acU -acU -agq -adX -abI -abI -aht -aht -aht -aht -aht -aht -aht -aht -aht -aht -aht -aht -aht -apT -aqL -arS -asV -aua -auW -awd -axi -aaa -aaa -aAH -aBE -aCS -aDW -aEP -aFA -aGv -aHk -aHV -aDZ -aJO -aLc -aLX -aNv -aOF -aPN -anX -aRY -aQN -aUf -aVl -aWo -aXl -aUf -aUf -aPE -bbu -bcs -bag -beG -aPE -bgy -aJI -aDZ -bih -bjp -bkm -bly -bmD -bJI -boS -bqb -brs -bsS -buq -bvx -bxe -byH -bAq -bBs -bCG -bDD -bET -bBp -bHj -bIx -cqz -bKM -bLU -bMW -bOe -bOM -bPM -bQD -bRq -bCC -bSP -bTG -bTQ -bVc -bUo -bWH -bXk -bTE -bZc -ueX -cCU -bZJ -wbF -cCV -ceb -epV -qLI -aaj -eiV -upc -dsz -eiV -eiV -uaO -voh -eiV -cdm -aaa -aaa -fon -fon -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(134,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -abI -abO -abX -acg -aci -abY -abW -acu -acw -abY -abX -acg -aci -acU -adf -adq -adD -adP -aeb -aek -aek -aek -aeA -adF -afk -ael -afS -acU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -apT -aqM -arT -asW -aub -auX -awe -axj -aaa -aaa -aAH -aBF -aCT -aDX -aEQ -aFB -aGx -aHl -aHV -aDZ -aJV -aLd -aLY -aNw -aOG -aPO -anX -aRZ -aQN -aUf -aVm -aWp -aXm -aYk -aUf -bao -bbv -bct -bah -aZe -bdy -bdo -aJI -wVC -aHN -blt -bmC -bmC -bmH -byK -boS -bqc -brt -bsR -bur -bvy -bxf -byI -bAr -bBt -bCH -bDE -bEU -bBp -bHk -bIv -bJE -bJN -bLV -bMX -bOf -bON -bJN -bQE -bRr -bSa -bJN -bJN -bJN -bVd -bJN -bJN -bJN -bJN -frj -pYh -pYh -pYh -pYh -pYh -pYh -pYh -pYh -hUw -nqu -nsJ -gBb -nsJ -nsJ -gBb -nsJ -nsJ -dsz -aht -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(135,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aaa -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -abO -acU -adg -adr -adE -adQ -aec -ael -ael -ael -aeB -aeS -afl -ael -afS -acU -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -apT -aqN -arU -asX -auc -auY -awf -axk -aaa -abI -aAH -aBG -aCU -aDY -aER -aAH -aGy -aAN -aHV -aDZ -aJO -aLc -aLZ -aNx -aOH -aPP -anX -aSa -aQN -aUf -aUf -aWq -aXn -aYl -aUf -bap -bbw -bcu -bag -aXb -bdy -bdo -bhd -aBI -aHG -bjr -bko -blz -bmI -byK -boT -bqb -bru -bsT -bus -bvz -bxg -mdL -bCJ -bBu -bCI -bDF -bEV -bBp -bHl -bIv -bJF -bKO -bLW -bMY -bOg -bOO -bPN -bQF -bRs -bSb -bLW -bTH -bUp -bVe -bUp -bWI -bXr -bKQ -udl -bZK -abI -abI -abI -abI -aaa -aaa -aaa -uaO -wIo -nsJ -gBb -nsJ -nsJ -gBb -nsJ -nsJ -hyh -aaa -aaa -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(136,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -acv -aaa -aaa -aaa -acF -acN -acV -acV -acV -adF -acU -acU -acU -acU -acU -acU -acU -afm -afB -afT -acU -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -apT -aqO -arV -asY -aud -auZ -awg -axl -aaa -axi -aAH -aAH -aCV -aAH -aAH -aAH -aAN -aAN -aIc -aGV -aJP -anX -aMa -aNy -aOI -aPQ -anX -aSb -aSV -aNj -aVn -aWr -aXo -aYm -aUf -baq -bbx -bcv -bah -beH -aPE -bgz -aJI -aDZ -bip -bKM -bkp -blA -bmJ -bnL -boU -cCl -cCl -cCl -cCl -bqb -bxh -bqb -fRs -fRs -bAo -bAo -fRs -bBp -bHm -bIy -bJG -bKP -bLX -bMZ -bOh -bOP -bPO -bRz -bRt -bSc -bSQ -bTI -bUq -bVf -bMf -bWJ -bXs -bJN -cui -bJP -bJP -bJP -bJP -bJP -abI -abI -aht -pBJ -wIo -nsJ -gBb -nsJ -nsJ -gBb -nsJ -nsJ -dsz -aht -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(137,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -aaa -abI -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -acU -acU -acU -acU -acU -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -apT -aqP -arW -asZ -aue -apT -awh -axk -abI -awd -aAI -aBH -aCW -aDZ -aAN -aFC -aGz -aAN -aId -aDZ -aJR -anX -anX -aNz -aOJ -anX -anX -aKT -aSW -aKT -aUf -aUf -aXp -aUf -aUf -aPE -aPE -bcw -bdy -aPE -aPE -aDZ -aJI -aDZ -biq -bGa -bkq -blB -bkn -bnM -bsU -bqd -brv -cqk -but -bsU -bxi -byJ -bAt -bBw -bCK -bDG -bEW -bAt -bHg -cqw -cqD -bKO -bLW -bNa -bOi -bOQ -bPP -bQG -bRu -bSd -bTO -bTJ -bMf -bMf -bMf -bMf -bXt -bYp -eAZ -bZL -caz -cbs -cbs -bJP -aaa -aaa -aaa -uaO -wIo -nsJ -gBb -nsJ -nsJ -gBb -nsJ -nsJ -hyh -aaa -aaa -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(138,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acO -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -abI -aaa -aaa -aaa -abI -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cBU -lcZ -lcZ -apT -apT -apT -apT -apT -apT -awi -axk -awd -awd -aAJ -aBI -aCX -aBI -aES -aBI -aBI -aEY -aHG -aBI -aJX -aBI -aMb -aNA -aOK -aMb -aRd -aMb -aSX -aUi -aVo -aMb -aXq -aMb -aZh -bar -aMb -aSX -aMb -aBI -aEY -bgA -bhe -aDZ -bip -bKM -bkr -blC -cqe -bnN -byC -bqe -byC -cql -byC -bvA -bxj -hiY -bAt -bBx -bCL -bDH -bEX -bGb -bHn -bIA -bJH -bJN -bJN -bNb -bOj -bPQ -bRx -bRA -bSS -bST -bJN -bTK -bMf -bMf -bMf -bMf -bXu -bLW -cui -bMi -caA -cbt -ccm -bJP -aaa -aaa -aaa -pBJ -swg -hyh -pBJ -hyh -pBJ -hyh -pBJ -hyh -cdm -aht -aht -fon -shH -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(139,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aby -aby -aby -aby -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lcZ -apW -apV -apU -aqQ -arX -ata -auf -ava -awj -axm -ayh -azq -aAK -aBJ -aCY -aEa -aEa -aEa -aEa -aHm -aIe -aJc -aJY -aEa -aEa -aJY -aOL -aPR -aPR -aPR -aPR -aUj -aJI -aDZ -aHN -aDZ -aDZ -aDZ -bby -aDZ -aDZ -aDZ -aGV -aDZ -bhh -bhM -bir -bBo -bks -blD -bko -bko -bko -bqf -bko -bsV -buu -bvB -bxk -byK -bAt -bBy -bCM -bDI -bEY -bGc -bHo -bRX -cqE -bJN -bLY -bNc -bOk -bPQ -bRy -hka -bQH -bSe -bPQ -bTL -bMf -bMf -bMf -bWM -bXv -bVh -poP -bZL -caB -cbs -cbs -bJP -aaa -aaa -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -fon -fon -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(140,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cBU -aoB -apr -apV -aqR -arY -atb -aug -cBU -awk -axn -axn -axn -aAL -aAL -aCZ -aAL -aAL -aAL -aAL -aGU -aCZ -aJd -aJZ -aAL -aMc -aNB -aOM -aPS -aRe -aMc -aHE -aUk -aJZ -aMc -aXr -aMc -aZi -aMc -bbz -aMc -aPS -aAL -aGU -aAL -aJZ -aAL -bis -aAN -bkt -bkt -bku -bkt -bkt -bkt -bku -bkt -bkt -bvC -bxl -cqt -bAu -bAu -bAt -bAt -bAu -bAu -bHp -cqx -bJJ -bKQ -bLZ -bNd -bOl -bOT -bPR -bPQ -bPQ -bQI -bPQ -rNi -bMf -bMf -hjk -pmB -bXw -dJk -cui -bJP -bJP -bJP -bJP -bJP -aaa -aaa -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(141,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiS -aiT -aiS -aiT -aiS -aiT -aiS -aiT -aiS -aiT -aiS -aaa -lcZ -apU -apV -apW -aqS -arZ -atc -auh -avb -awl -awd -abI -awd -aAM -aBK -aDa -aEb -aAM -aFD -aDa -aAN -aIf -aJe -aKa -aLe -aLe -aNC -aON -aLe -aLe -aPW -aSY -aUl -aUs -aPW -aLf -aLf -aLf -aLf -aLf -aEj -aEj -aEj -aEj -bgB -aJI -aDZ -aHN -bjm -bku -blE -bmL -bnO -boX -bqg -brw -bsW -bku -cqp -bxm -byL -bAv -bsU -cqk -bsU -bsU -bGd -bHq -bIC -bJK -bJN -bMa -bNe -bOm -bOU -bPS -bSf -bUp -bTM -bUp -bTN -bMf -bMf -bVZ -bOX -bUA -bYp -eAZ -bZL -caC -cbu -cbu -bJP -aht -aht -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -aht -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(142,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiT -plA -oMN -akf -gxe -akf -eqD -oMN -vlF -tvj -aiT -aaa -cBU -lcZ -lcZ -cBU -cBU -asa -atd -aui -avc -awm -awd -abI -axi -aAN -awd -awd -aAN -aAN -awd -awd -aAN -aIg -aJf -aKb -aLe -aMd -aND -aOO -aPT -aRf -aSc -aSZ -aOT -aVp -aWs -aPW -aYn -aZj -bas -aLf -bcx -bdz -aFi -bfu -aDZ -aJI -bhP -aHN -bjm -bkv -blF -bmM -bmM -bmM -bqh -brx -bsX -buv -bvE -bxn -byM -bAw -bBz -cqv -bBz -bBz -bBz -bHr -bID -bJL -bKR -bMb -bNf -bQJ -bOV -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVZ -bOX -bXx -bVi -cui -bMi -caD -cbv -ccn -bJP -aaa -aaa -fon -shH -shH -shH -shH -shH -shH -shH -shH -shH -shH -fon -aaa -aht -shH -shH -fon -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(143,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiS -qPB -iqc -ngp -cBr -cBs -tap -gna -klV -xbJ -aiS -aaa -aaa -aaa -aaa -aaa -cBU -cBU -cBU -cBU -cBU -awd -axi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awd -aHN -aIU -aJI -aLe -aMe -aNE -aOP -aPU -aRg -aSd -aTa -aOT -aVq -aWt -aXs -aYo -aVu -bat -aLf -bcy -qAM -aEj -aEj -bgC -bhi -bhQ -bip -bjm -bku -blG -bmN -bnP -bnP -bqi -bmM -bsY -bku -bvF -bxo -byN -bAx -bko -bko -bko -bko -bko -bHs -bBA -bJM -bJN -bMc -bNg -bOn -bOX -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVY -bUs -bVg -bVm -poP -bZL -caE -cbu -cbu -bJP -aht -aht -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -fon -aaa -aht -shH -fon -fon -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(144,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiS -aiS -aiS -aiS -epJ -uaC -cBv -cBw -gNv -nnh -sqh -aiT -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -awd -aHN -aIU -aJH -aLe -aMf -aNF -aOQ -aPV -aRf -aSc -aSZ -aUm -aVp -aWu -aXt -aYp -aPY -bau -aLf -aFi -aFi -beI -beI -bgD -bhj -beI -bit -beI -bkt -blH -bmO -bnQ -bnQ -bqi -bry -bsZ -bkt -bvG -bxp -byO -bAy -bBB -bCN -bDK -bEZ -bGe -bHt -bIE -bJN -bJN -bMd -bPT -bOn -bOX -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVZ -bOX -kas -bNm -cui -bJP -bJP -bJP -bJP -bJP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fon -fon -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(145,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -cBk -jhD -cBo -alQ -xjg -cBw -noC -aiS -aiS -aiS -aiS -aiS -aiT -aiS -aiS -aiS -aiS -aiS -aiS -apX -avd -avd -apX -ayi -ayi -apX -aBL -aBL -apX -aET -rYC -aET -aET -aHN -aIU -aJI -lAs -lAs -iKb -aOR -iKb -lAs -lAs -aTb -aOT -aVp -aWu -aXu -aYq -aPY -bav -aLf -aFi -jBh -beI -bfv -bgE -bhk -bhR -biu -bju -bkt -blI -bmO -bnQ -bnQ -bqi -brz -bta -bkt -bvH -bxq -byP -bAy -bBo -bCO -bBo -bCO -bBo -bCO -bBo -bJN -bKS -bMe -bNh -bOo -bOX -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVZ -bWO -bXA -bQO -poP -bZM -caF -cbw -cby -bJP -aaa -aaa -aaa -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(146,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiU -jHP -aju -ajt -alQ -mnG -tap -tap -aiS -anY -apt -sbk -aiS -alP -cBB -apu -ale -ale -asb -coe -apX -ave -awn -apX -ayj -azr -apX -aBM -aDb -apX -oFo -jOB -qbZ -aET -aHN -aIU -aJI -lAs -aMg -aNH -aOS -aPX -aRh -aSe -aTc -aOT -aVp -aWu -aPW -aYr -aOV -baw -bbA -bcz -bdB -beI -bfw -bgF -bhl -bhS -bhS -bhS -bkw -blJ -bmP -bnR -bnR -bqj -brA -btb -bkt -bvI -bxr -byQ -bBo -aaa -aht -aht -aaa -aht -aht -aaa -bJN -bKT -bWM -bNi -bQK -bOZ -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVZ -bMf -bXB -bNm -cui -bMi -caG -cbx -cco -bJP -aht -aht -aht -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(147,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -kkk -akh -alc -alR -amF -pzF -tap -anm -ajv -ajv -aju -ajv -cBA -aiS -akn -apX -apX -asc -atf -apX -avf -awo -apX -ayk -azs -apX -aBN -aDc -apX -aET -cor -aET -aET -hFy -aJh -bhe -lAs -aMh -aNI -fwl -dMB -aRi -aSf -aTd -aUn -aVr -aWu -aLf -aYs -aZk -bax -aLf -aFi -bdC -beI -bfx -bgG -bhm -bhT -biv -biv -bkt -blK -bmQ -bmM -bmM -bmM -brB -btc -bkt -bvJ -bxs -byR -bAA -bAA -bCP -bAA -bCP -bAA -bCP -bAA -bHw -bKU -bOr -bPU -bRw -bPa -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bMf -bVY -bWP -bXy -bQO -poP -bZN -caH -cby -cby -bJP -aaa -aaa -aaa -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(148,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -cBl -cBm -cBp -alS -amG -mnG -cPO -aiS -aiS -aiS -aiS -aiS -aiS -aiS -akn -apX -aqT -asd -atg -auj -avg -awp -apX -ayl -azt -apX -aBO -aDd -apX -aEU -aFE -aGA -aHn -aIi -aJi -aKe -klb -aMi -aNJ -fwl -aPZ -aRj -lAs -aTe -aUo -aVs -aWv -aLf -aPW -aZl -aPW -aLf -aLf -bdC -beI -bfy -bgH -bhn -bhU -biw -biw -bkt -blL -bmR -bnS -boZ -bqk -brC -btd -bkt -bvK -bxt -byS -bAA -bBC -bDN -bDL -bFa -bGf -bCR -bIF -bHw -bKV -bOX -bUv -bQL -bPa -bMf -bMf -bMf -bMf -bSU -bTT -bUv -bKX -bTR -bUt -bXC -bYs -bVW -bYw -bYw -cBT -bYw -bYw -bYw -aht -aht -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(149,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -aiS -akg -aiS -aiS -akg -aiS -aiS -aiS -aob -eaw -ajv -ajv -cnX -aiS -apv -apX -aqU -ase -ath -apX -atf -awq -apX -atf -azu -apX -atf -aDe -apX -aFF -vuP -aGB -aET -aHN -aIU -aJI -lAs -aMj -aNK -fwl -dMB -dMB -iKb -aTf -aUp -aVt -aVt -aVt -aVt -aZm -aPY -bbB -aLf -bdD -beI -bfz -bgI -bho -bfz -beI -beI -bkt -bkt -bkt -bkt -bkt -bkt -bkt -bkt -bkt -bvL -bxu -byT -bAB -bBD -mzE -bDM -bFb -bGg -bHu -bIG -bJO -bKW -bMg -bNj -bOp -bPV -bPV -bPV -bPV -bPV -bUw -bUw -bUw -bVj -bTS -bUu -bXD -bYt -bZf -bZO -caI -cbA -ccp -cdg -cbz -aaa -aaa -mau -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(150,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -wMF -cBn -cBq -ajv -ajv -iEU -aiS -akj -ale -ale -ale -ale -ale -ale -apw -apX -aqV -asf -ati -auk -avh -awr -axo -aym -awr -aAO -aBP -com -apX -aET -lKL -aET -aET -aHN -aIU -aJI -lAs -aMk -aNL -aOU -aQa -aRk -aSg -aTg -aUq -aVu -aPY -aPY -aPY -aZn -aPY -bbC -aLf -bdC -beI -bfA -bgJ -bhn -bhV -beI -aKq -bkx -blM -bmS -bnT -bpa -bql -brD -bte -buw -bvM -bxv -byU -bAA -bBE -bCQ -bCR -bGh -bGh -bCR -bIH -bHw -cqG -bOX -bNk -bOq -bPd -bPW -bPW -bPW -bPd -bPW -bPW -bPW -bPd -bUr -bWQ -bXE -bYu -bZg -bZP -caJ -cbB -ccq -cdh -bYw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(151,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -aiS -aiS -aiT -aiT -aiS -aiS -aiS -cBx -aiS -aiS -aiS -aiT -aiT -aiT -aiS -apX -cod -asg -atj -apX -avi -aws -coi -aBQ -aDf -aDf -aBQ -con -cop -aEW -kIO -aGC -cos -coy -aJj -aJI -lAs -aMl -aNM -dse -aQb -aRl -aSh -aTh -aUr -aVv -aWw -aXv -aYu -aOT -aPY -bbD -aLf -bdD -beI -beI -beI -bhp -beI -beI -bjv -bkx -blN -bmT -bnU -bpb -bqm -brE -btf -bux -bvN -bxw -byV -bAA -bBF -bCQ -bDO -bCR -bCR -bCR -bII -bHw -bKY -bMh -bNl -bQM -bPe -bPX -bSR -bRB -bSh -bSV -bTP -bUy -bVk -bWb -bUz -bXF -bYv -bZh -bZQ -caK -cbC -ccr -cdi -cec -ceA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(152,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiT -akl -aiT -aaa -aaa -aaa -aaa -aaa -aaa -apX -apX -apX -apX -apX -avj -awt -axp -ayn -azv -col -aBR -coo -apX -aGV -aDZ -aGD -aDZ -aDZ -aJk -aJH -lAs -aMm -lAs -aOW -lAs -lAs -lAs -eeQ -aUs -aLf -eex -aLf -aLf -aUl -baz -aLf -aLf -bdE -bcz -bcz -bcz -bhq -aNR -bix -ygZ -bkx -blM -bmU -bnT -bpc -bqn -brF -bkx -buy -bvO -bxx -byW -bAA -bBG -xEx -bDP -bFd -bGi -bHv -bIJ -bHw -bKZ -bOR -bWR -bWc -bPf -bPY -bQO -bPY -bPf -bPY -bQO -bWc -bVl -bWc -bWR -bXG -bYw -bZi -bZR -caL -cbD -bYw -cdj -bYw -bYw -aaa -gYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(153,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajx -akm -alf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -apX -apX -aul -avk -awu -axq -ayo -azx -aAP -avk -aDg -aEc -aEY -cot -aBI -aBI -aBI -aJl -aKf -lAs -aMn -lAs -aOX -lAs -aRm -aLg -aTi -aUt -aVw -aWx -aXw -aYv -aZo -aTm -bbE -bbE -bbE -bbE -bbE -bbE -aEj -aEj -biy -bjw -bjw -bjw -bjw -bjw -bjw -bjw -bjw -bjw -bod -bvP -bxy -byX -bAA -bAA -bCS -bDQ -bCS -bAA -bHw -bHw -bHw -bLa -abI -bNn -abI -bLa -abI -bNn -abI -bLa -abI -bNn -abI -bLa -abI -bNn -abI -aht -bZj -bZS -caM -cbE -thA -cdk -ced -bYw -aht -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(154,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajy -akn -alg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ash -ash -ash -avk -awv -axr -ayq -azy -aAQ -avk -aDh -aEd -aEd -aEd -aEd -aEd -aIj -aJm -aKg -cDa -aMo -cDa -cDa -cDa -cDa -aLg -wDZ -aUu -aVx -aVx -aVx -aYw -aZp -aZt -bbF -bcA -bdF -beJ -bfB -dps -aZv -aUC -biz -bjw -bky -blP -bmV -bnV -bpd -bqo -brG -btg -fjs -bvQ -bxz -byY -bAC -bBH -bCT -bDR -bCT -bGj -buz -abI -bJP -bLb -bMi -bLb -bJP -bLb -bMi -bLb -bJP -bLb -bMi -bLb -bJP -bLb -bMi -bLb -bJP -aaa -bYw -bZT -caN -bZT -bYw -cdl -oGw -bYw -aaa -mau -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(155,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -ajy -ako -alg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aqY -asi -atk -izB -avk -awv -axt -coj -cok -ayr -aBS -aDi -aEd -aEZ -aEZ -aEZ -aEd -aEd -aJn -aEd -aEd -aMp -aNN -aOY -aQc -aRn -aSi -aTk -aUv -aVy -aWy -aXx -aYx -aZq -baA -bbG -bcB -bdG -beK -bfC -bbE -aTx -aEj -aTx -bjw -bkz -blQ -bmW -bnW -bpe -bqp -brH -brH -buA -bvR -bxA -byZ -bAD -bBI -bCU -bDS -bwb -bGk -buz -abI -bJP -bLc -bMj -bNo -bJP -bPg -bPZ -bQP -bJP -bSj -bSW -bTV -bJP -bVn -bWe -bWT -bJP -aht -bYw -bZU -caO -cbF -bYw -gmZ -bYw -bYw -aht -fon -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(156,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -aaa -aaa -aaa -ajy -akn -alg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -asj -atl -aum -avk -awv -axu -ays -azA -avk -avk -aDj -aEe -aFa -aFG -aGF -aGF -aGF -aFI -aKh -aEd -aMq -aNO -aOZ -aQd -aRo -aSj -aTl -aUw -aTm -aTm -aTm -aYy -aZo -baB -bbH -bcC -bdH -beL -bfD -bbE -aTx -aEj -aTx -bjw -bkA -blR -bmX -bnX -eSL -bqq -bpf -bth -wBb -bvS -bwa -bza -bAE -bBJ -bBJ -bDT -bFf -bGl -buz -abI -bJP -bLd -bOS -bLe -bJP -bPh -bQa -bPh -bJP -bSk -bSX -bSk -bJP -bVo -bWf -bVo -bJP -aht -bYw -igB -caP -fRr -qVk -cdm -cdm -bYw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(157,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -ajz -akk -alh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -apX -apX -apX -avl -fIu -epj -aIh -azA -dbi -dbi -aDk -aEd -aFb -aFH -aGG -aHo -aIk -aJo -aGF -aEd -aMr -aNO -aPa -aNO -aRp -aSk -aTm -aUt -aVz -aWz -aVz -aYz -aZo -baC -bbI -bbI -bdI -bdI -bdI -bbI -bhr -bbI -aTx -bjw -bkB -blS -bmY -bnY -bpg -bqr -bqs -bti -wBb -bvT -bxC -bzb -bAF -bAF -bCV -bDU -bCV -bAF -bHy -aaa -bJP -bLe -bMk -bLe -bJP -bPh -bQb -bPh -bJP -bSl -bSY -bSk -bJP -bVo -bWg -bVo -bJP -aaa -bYw -bYw -caQ -bYw -bYw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(158,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -akp -aiT -aaa -aaa -aaa -aaa -aaa -aaa -aaF -aaF -aaF -aaF -atn -atn -aww -axv -ayt -azB -axv -axv -atn -aEd -aEd -aFI -aGH -aEd -aEd -aEd -aKi -aEd -aMs -aNO -aPb -aQe -cDa -cDa -aTn -aUx -aVA -aTm -aTm -aTj -aZr -baD -bbI -bcD -bdJ -beM -bfE -bgK -bhs -bbI -aTx -bjw -bjw -bjw -bjw -bjw -bph -eYr -bqs -brJ -wlK -bvU -bxD -bzc -bAF -bBK -bCW -bDV -bFh -bGm -bHy -aaa -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -bJP -abI -aaa -bYw -caR -bYw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(159,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -cBy -aiS -aaF -aaF -aaJ -aaJ -aaJ -aaF -aaF -abw -abz -abH -abl -axw -abg -axw -ayu -azC -axw -aBT -atn -aEf -aFc -aFI -aGF -aHp -aIl -aEd -aKj -aEd -aMt -aNP -aPb -aNO -aNP -tLP -aTq -aSk -aTm -aTm -aTm -aYy -aZs -baE -bbJ -bcE -bdK -beN -bfF -bgL -bht -bbI -biC -pdW -bjw -blT -bmZ -bnZ -bpi -edl -bqs -btk -buB -eNq -eNq -urP -bAF -bBL -bCW -bDW -kmn -bGn -bHy -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -abI -nbu -hbl -nbu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -ckK -cju -cju -cju -cju -cju -cju -ckK -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(160,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -akn -ajv -aaH -aaN -abc -abm -abm -abq -abm -abm -abA -abT -abK -abL -abM -abP -abR -azC -axw -aBU -atn -aEg -aFd -aFJ -aGF -aEd -aEd -aEd -aEd -aEd -aMu -aNO -aPc -aQf -aRq -cDa -aTp -aSk -aTm -aTm -cCB -aYA -aZt -aZp -bbK -bcF -bdL -beO -bfG -bgM -bhu -bbI -aFi -aTx -bjw -blU -bna -bqs -bqs -bqt -brK -btl -dkR -bvV -cxt -bzd -wnJ -bBM -bCX -bDX -bFi -bGo -bHy -aaa -aby -aaa -aby -aaa -aby -aaa -aaa -bzy -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -cju -ckK -ckK -cju -cju -cju -cju -cju -cju -cju -ckK -ckK -ckK -cju -ckK -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(161,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaE -aaF -aaR -aaL -aaO -aaO -aaO -aaO -aaO -aaW -aaF -abb -abd -abh -abQ -abS -azD -aAS -aat -atn -aEh -aFe -aFI -aGF -aHq -aIl -aEd -aKk -aLh -aMv -aNQ -aNO -aQg -aNP -cDa -aTq -aSk -aVB -aWA -aXy -aYB -cCT -baF -bbI -bcG -bdM -beP -bfH -bfH -bhv -bbI -aEj -bjx -bjw -blV -bnb -bqs -bqs -bqt -brL -btl -buC -bvW -bxG -bze -vTN -bBN -bBN -bDY -bFj -bGp -bHy -abI -aby -aht -aby -aht -aby -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -ckK -cju -ckK -cju -ckK -ckK -cju -cju -cju -ckK -cju -ckK -cju -cju -cju -ckK -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(162,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaG -aaF -aaS -aaL -abn -aaO -aaO -aaO -aaO -aaW -aaY -aba -axw -abg -axw -axw -axw -axw -aBW -atn -aEd -aEd -aFK -aEd -aEd -aEd -aEd -cCX -cDa -cDa -cDa -coL -coL -coL -cDa -aTr -aUy -aPd -aUy -aXz -aLg -aLg -aLg -bbI -bbI -bbI -bdI -bfI -bdI -bbI -bbI -aGP -bjx -bjw -blW -bna -pbI -bqs -bqt -brM -btl -gDZ -bvV -bxH -bzd -wnJ -bBO -bCZ -bDX -bFk -bGq -bHy -aaa -aby -aaa -aby -aaa -aby -aaa -aaa -aaa -acO -aby -aby -aby -aaa -acO -aby -bzy -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -cju -ckK -ckK -ckK -ckK -cju -cju -cju -ckK -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(163,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaF -aaS -abj -aaO -aaO -aaO -aaO -aaO -aaW -aaY -awB -abe -abi -axw -axw -axw -axw -aBX -atn -aEi -aEd -aFL -aGI -aHr -aEd -aJp -cCY -aLi -aMw -aEj -aaa -aaa -aaa -aLg -aTs -aUz -aPd -aWB -aXA -aLg -aaa -aaa -aaa -aaa -aaa -bdI -bfJ -bdI -aaa -aEj -pKd -bjx -bjw -qDJ -vmG -bnZ -pDP -nBL -bqs -xgG -cKA -bvY -bvY -fkH -bAF -bBP -bCW -bDX -bFl -bGr -bHy -aaa -aht -aaa -aht -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -ckK -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(164,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaI -aaS -aaL -abo -aaO -abr -aaO -aaO -abB -atn -atn -avm -avm -axy -avm -avm -axy -avm -avm -atn -atn -aFM -aGJ -aGJ -aDl -aEk -cCZ -aLj -aMx -aEj -aaa -aaa -aaa -aLg -aTr -sQt -aPd -sQt -aXz -aLg -aaa -aaa -aaa -aaa -aaa -bdI -oPy -bdI -aaa -aEj -aEj -bjx -bjw -bjw -uAZ -boe -boe -bqv -bqs -brJ -buD -bvZ -bxJ -tAK -bAF -bBQ -bDa -bEa -bFm -bGs -ubW -ubW -xIx -bHy -bHy -bHy -bOs -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -cju -ckK -ckK -cju -ckK -cju -ckK -ckK -cju -cju -cju -ckK -cju -ckK -ckK -ckK -cju -cju -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(165,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaK -aaS -aaL -aaO -aaO -aaO -aaO -aaO -abC -atn -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aEd -aEd -aEd -aEd -aEj -aEj -aKq -aJs -aEj -aaa -aaa -aaa -aaa -aaa -aUA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bfK -aaa -aaa -aaa -aEj -obj -aLi -tim -eXo -bof -boa -bqw -brH -btp -buE -bwa -efu -bzh -bAF -bBR -bDb -bEb -bFn -bGt -bHz -bIM -bJQ -bIM -bMl -bNp -bOt -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -ckK -cju -ckK -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -ckK -ckK -clF -cju -cju -ckK -ckK -cju -cju -cju -cju -ckK -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(166,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaI -aaS -aaL -aaO -aaO -aaO -aaO -aaO -aaW -avm -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aFN -aGK -aHs -aEj -aJq -aKn -aKn -aMy -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bjx -aFi -bjw -nJI -bog -bpo -lAR -bqs -bti -buF -bwb -bxK -bzi -bAF -bBS -bDc -bEc -bGu -bGu -bGu -bIL -bJR -bLf -bMm -bNp -bOt -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -ckK -cju -cju -cju -cju -ckK -ckK -cju -cju -cju -ckK -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -cju -ckK -cju -cju -cju -ckK -cju -cju -cju -ckK -clv -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(167,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -aaF -aaF -aaT -aaL -aaO -aaO -aaO -aaO -aaO -aaW -avm -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aFO -aGL -aHt -aEj -aJr -aEj -aLk -aLk -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bjx -aEj -bjw -xPa -boh -bpp -bqx -bqs -brJ -buG -bwc -bxL -bzj -bAF -bBT -bDd -bEd -bFp -bGv -bHA -bIM -bJS -bIM -bMn -bNp -bOt -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -ckK -cju -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -ckK -ckK -cju -cju -ckK -cju -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -ckK -ckK -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(168,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -akn -ajv -aaF -aaU -aaL -aaO -aaO -abs -aaO -aaO -aaW -avm -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aFP -aGM -aFi -bfu -aJs -aKo -aLl -aMz -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bjx -aFi -bkD -vxp -boc -bnc -tdp -oDP -bts -buH -bjw -bjw -bjw -bHy -bHy -bHy -bHy -bHy -bGw -nsD -rPW -kfh -bHy -bHy -bHy -bOs -mZE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cjv -cju -cju -cju -cju -ckK -cju -cju -cju -cju -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -cju -cju -cju -ckK -ckK -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -ckK -ckK -clv -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(169,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiT -akn -aaQ -aaF -aaV -aaM -aaP -aaP -abt -aaP -aaP -abD -atn -aur -aur -aur -aur -aur -aur -aur -aur -aur -aur -atn -aFQ -aGN -aGN -aEj -aJt -aFi -aFi -aEj -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bjx -aEj -bjw -bjw -bjw -bjw -bkF -brR -btt -brR -bkF -ldQ -lNW -mSc -sci -bwm -glf -bFr -qtA -khk -bIN -dAF -bCV -bCV -bCV -bOu -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -cjv -cjv -cjx -cjx -cjx -cju -cju -ckK -cju -cju -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -cju -cju -cju -ckK -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(170,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -sbk -aaF -aaX -aaZ -aaZ -abk -abp -abu -abx -abE -atn -atn -avm -avm -vzz -avm -avm -vzz -avm -avm -atn -atn -aEj -aEj -aEj -aEj -aJs -aKp -aFi -aMA -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -aEj -aEj -aEj -aEj -aEj -aEj -aEj -oTl -vzP -vzP -iWV -aFi -bpq -bnj -brT -bxF -wkZ -bnj -bwm -bwm -lWy -gXg -bwm -pNy -bFs -bGx -bHC -cxb -bJT -wOS -bMp -bPl -bcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ahi -cjw -cjV -ckt -cjx -cjx -cjx -cju -cju -ckK -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(171,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -akn -ajv -aaF -aaF -aaF -aaF -aaF -aaF -aaF -aaF -abF -aaF -aiS -atn -awC -axz -ayw -azE -aAT -aBY -atn -aEj -aFf -hUt -aFi -aFi -aFi -aJs -aFi -aFi -aFi -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEl -bdQ -beR -aUC -aUC -eCw -aUC -aUC -qHI -aKq -aEj -wAI -vzP -vzP -bqA -brU -bxF -buK -dqw -spz -spz -spz -wFT -bwm -veM -bFt -bGy -bHD -fBz -gMm -bCV -bCV -bCV -ahi -aht -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -ahi -cjx -cjx -cjx -cjx -cjx -cjx -cjx -ckK -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -ckK -cju -ckK -ckK -ckK -ckK -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -cju -cjx -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(172,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -aaD -ale -ale -ale -ale -ale -ale -ale -abv -ale -abG -ale -ale -avn -awD -axA -ayx -azF -aAU -aBZ -aDl -aEk -aEk -aEk -aEk -aEk -aEk -aJv -aKn -aKn -aMB -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -aTx -aEj -aKq -aEj -gfi -aEj -bkF -bkF -bkF -bkF -bkF -bkF -bkF -bkF -brV -ume -bkF -bkF -bkF -bkF -bxP -nev -hgD -bEf -bFu -noM -bHE -bJV -bLh -bMq -aht -aht -aaa -aht -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -ahi -cjx -cjx -cjx -ckL -cjx -clj -cjx -ckK -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -ckK -ckK -clv -clv -clv -ckK -ckK -ckK -ckK -cju -ckK -cju -ckK -ckK -cju -cjx -cnp -cnq -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(173,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aiS -aiS -aiS -aiS -aiS -aiT -aiS -aiS -aiS -aiS -aiS -aiT -aiS -aiS -atn -atn -avm -avm -avm -avm -atn -atn -aEj -aEj -aEj -aEj -aHu -aEj -aEj -aKq -aEj -aJs -aEj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEl -aTx -aFi -aFi -aEj -bhz -lEn -pnU -pnU -bnd -taT -lWH -wfs -pfP -bqC -brW -vMx -ofN -gdL -iLl -bkF -bwm -xlA -bwm -bAF -bAF -bGA -bAF -bAF -bAF -bAF -bAF -uaO -dsz -xQk -hxI -xQk -hxI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -abI -ahi -cjx -cjx -cjx -cjx -cjx -cjx -cjx -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -cju -ckK -ckK -cju -cju -ckK -ckK -cju -cju -ckK -ckK -ckK -ckK -ckK -ckK -cju -cju -ckK -cju -cju -cju -cjx -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(174,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -abI -abI -abI -aEj -aFg -aFR -aGO -aFi -aGO -aFi -aFi -aEj -aJs -aEj -aEj -aEl -aEl -aEl -aEl -aEj -aEj -aht -ccs -aEj -aEl -aEl -aEj -aEj -aTx -aFi -aFi -aEj -bjD -lEn -uwb -bjB -bkH -mql -bpn -hEX -brO -bzg -brX -csu -xzp -ugC -gdJ -bkF -lWy -cDB -lWy -tSL -lWy -bAG -bwm -rBh -gjv -tfx -xlg -mJp -nqu -mJp -nqu -tlp -ilE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -ahi -cjw -cjx -cjx -ckt -cjx -cjx -cju -cju -ckK -cju -ckK -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -ckK -ckK -cju -ckK -ckK -ckK -cju -cju -ckK -ckK -cju -cju -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(175,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aEj -aFh -aEj -aGP -aEj -aIp -aEj -aEj -aEj -aMC -aNR -aNR -aNR -aNR -aNR -aTu -aUB -aEl -aaa -aEj -aZv -aUC -aUC -bcH -aUC -aZw -beS -aFi -aEj -gfi -lEn -biD -biD -bnd -tdB -bpn -thW -bpn -bqE -brW -btu -xpr -ihk -pXg -bkF -kPi -cDB -hxn -uvq -bFx -bIP -bNq -tSL -hMx -tfx -xlg -mhK -wIo -mhK -mhK -mhK -hyh -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -cjv -cjv -cjx -cjx -cjx -cju -ckK -ckK -cju -ckK -ckK -ckK -ckK -cju -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(176,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEl -aFi -aEj -aEj -aEj -aIq -aJw -aKr -aEj -aMD -aPf -aQj -aRs -aLi -aSl -aTv -aGO -aEj -aEj -aEj -aTx -aFi -aGO -bcI -aFi -aFi -aFi -bfM -aEj -bhz -lEn -vYN -vYN -bnd -blZ -mQm -ilD -edJ -bqF -brW -btv -nuv -ihk -cPT -bkF -syQ -cDB -rFq -obP -bFy -bGB -bwm -bwm -bwm -rNB -bwm -bwm -rNB -bwm -rNB -bwm -cdm -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cjv -cju -cju -cju -cju -cju -cju -ckK -cju -ckK -cju -cju -ckK -ckK -ckK -ckK -ckK -cju -cju -ckK -ckK -ckK -cju -cju -cju -ckK -ckK -ckK -ckK -cju -ckK -cju -cju -cju -cju -cju -cju -ckK -cju -cju -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(177,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEl -aFi -aEj -aaa -aEj -aEl -aEj -aEj -aLm -aLm -aLm -aQk -aRt -aLm -aLm -aTw -aUC -aVE -aUC -aUC -aZw -aEj -aEj -hSM -aEj -aEj -kIo -bfN -aEj -gfi -aEj -bkF -bkF -bkF -xWl -hPN -nxT -ueP -ost -nOY -dgz -jxl -tXn -hfZ -bkF -kkQ -rKL -lWy -lWy -bFz -bIR -fwr -eMC -bwm -aht -bwm -ikB -iVJ -lWy -typ -bwm -aht -aby -aht -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -ckK -ckK -cju -ckK -cju -cju -ckK -ckK -cju -ckK -cju -cju -cju -ckK -cju -ckK -cju -cju -cju -ckK -cju -ckK -ckK -cju -cju -cju -cju -cju -ckK -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(178,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aEj -bZV -aEj -aaa -aaa -aaa -aaa -aLn -aNT -xer -aQo -aPg -aRu -srZ -aLm -aTx -aEj -aEj -aEj -aEj -aYC -baG -cfQ -bcJ -mvm -baG -aEj -aEj -aEj -bhB -fwI -fwI -bjE -bkF -bnj -bnj -bnj -bnj -brR -qVP -qtF -jwe -brR -bnj -bkF -bkF -bkF -bkF -bwm -bwm -bwm -bwm -lQn -bwm -rNB -bwm -wTO -hPU -xsO -rEh -rNB -aaa -aby -aaa -aed -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -ckK -ckK -cju -cju -ckK -cju -ckK -ckK -ckK -clv -ckK -ckK -cju -cju -cju -ckK -ckK -cju -cju -ckK -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(179,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abN -aaa -aaa -aaa -aaa -aaa -ahi -ahi -ahi -aaa -aaa -aaa -aaa -aLm -aLm -aNU -phS -dqY -aRv -sZh -aLm -aTx -aEj -aav -aFi -aFi -aFi -baG -bbL -bcK -bdR -baG -bfP -bfP -aEj -aEj -aEj -aKq -gfi -bkF -blX -blX -bpr -oSc -bsa -btw -buI -bwe -bxM -bzk -bAH -blX -blX -bkF -kgR -bFB -bwm -svN -bIQ -uek -lWy -bwm -qnT -lJr -lWy -maW -bwm -aht -aed -aht -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -ckK -ckK -ckK -ckK -ckK -cju -cju -ckK -ckK -cju -ckK -ckK -cju -cju -cju -ckK -ckK -cju -cju -ckK -ckK -cju -cju -ckK -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(180,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLm -aME -eFG -phS -dqY -aRw -sqQ -aLm -aTy -aEj -aEj -aHu -aEj -aEj -baG -bbM -bcL -bdS -baG -kKI -aFi -hOz -aEj -oRX -biF -bjF -bkF -bnh -blX -blX -kNf -bsb -btw -buJ -bwe -bxN -bzl -blX -bBU -bDe -bkF -dMO -lWy -rxQ -lWy -bIQ -lWy -lWy -mES -lWy -lWy -lWy -lWy -bwm -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -ckK -ckK -cls -ckK -ckK -cju -cju -ckK -cju -cju -ckK -cju -cju -cju -cju -ckK -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(181,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLo -aMF -aNV -phS -cvf -aQn -sqQ -aSm -aTz -aEj -aVG -aFi -aFi -aYD -baG -rWE -uXH -rWE -baG -eZA -tDn -aFi -nZw -aFi -gfi -aFi -bkF -bni -blX -blX -hvW -igE -btx -dxc -bwf -bxO -bzm -blX -blX -blX -bkF -hTl -bFC -bwm -nzD -uoj -bwm -lWy -bwm -dMI -lWy -lWy -jDA -bwm -aht -aby -aht -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -ckK -cju -ckK -cju -ckK -ckK -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(182,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLo -aMG -aNX -phS -xer -aRy -aSn -aSn -aTA -aEj -aVH -aFi -aXC -aYE -baG -rWE -oCX -rWE -baG -vzT -gUb -aFi -aEj -gSI -gfi -bfM -bkF -bnj -bnj -bnj -bnj -bnj -itl -buL -cuc -bnj -bnj -bnj -bnj -bnj -bkF -bwm -bwm -bwm -bIQ -bwm -bwm -bwm -bwm -oEG -ndI -lWy -cDB -rNB -aaa -aby -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(183,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLm -aMH -aNY -aPi -aQp -aRz -daY -aSo -aTB -aEj -aVI -aFi -aXC -aYF -baG -sut -oCX -rWE -baG -dsv -dLY -xyl -aEj -aKq -gfi -ybX -bkF -blX -blX -bpr -bqG -bsa -btw -buM -bwh -bxM -bzn -bAH -blX -blX -bkF -qIO -jXA -bwm -bIQ -hXt -bwm -aht -bwm -hFp -abf -abf -ijU -bwm -aht -aed -aht -aed -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cju -cju -cju -cju -cju -cju -cju -cju -cju -cju -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(184,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLm -aLm -aLo -aLm -aLo -aLm -aLm -aLm -aLm -aEj -aEj -aEl -aEl -aEl -baG -rWE -atZ -rWE -baG -aEj -aEj -aEj -aEj -aEj -ntj -bfM -bkF -bnh -blX -blX -bqH -bsb -btw -buN -bwe -bxQ -xxO -blX -bBU -bDe -bkF -dmP -bFD -bwm -gxK -pWF -bwm -aht -bwm -bwm -rNB -bwm -rNB -bwm -aaa -aby -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(185,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -abI -aaa -aaa -abI -abI -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aht -aEl -gfi -ybX -bkF -bni -blX -blX -bqI -bsc -btx -buO -bwf -bxR -bzp -blX -blX -blX -bkF -aaA -lWy -fKj -lWy -bIQ -bwm -aed -aaa -aht -aaa -aht -aaa -aed -aaa -aaa -cFB -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(186,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aht -aEl -gfi -fNv -bkF -bnj -bnj -bnj -bnj -bnj -bsf -buQ -buU -bnj -bnj -bnj -bnj -bnj -bkF -sZu -lWy -bwm -bwm -bIQ -bwm -aby -aht -aby -aby -aby -aby -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(187,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aht -aEl -gfi -bfM -bkF -blX -blX -bpr -bqJ -bsa -gIG -buN -bwe -bxM -bzq -bAH -blX -blX -bkF -wfc -sAK -bwm -hXt -bIQ -rNB -aby -aaa -aed -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(188,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aht -aEl -gfi -ybX -bkF -bnh -blX -blX -bqK -bsd -gIG -buN -bwe -bxS -bzr -blX -blX -bDe -bkF -bwm -bwm -bwm -bwm -bIQ -bwm -aed -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(189,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -abN -aaa -aEj -aEj -ntj -fNv -bkF -blX -blX -blX -bqL -bse -xjT -btE -buW -bxT -bzs -blX -blX -blX -bkF -ueV -heC -uug -cDB -bIQ -bwm -bwm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(190,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aEl -bnl -gfi -aFi -bkF -bkF -bkF -bkF -bkF -bkF -bkF -qdi -bkF -bkF -bkF -bkF -bkF -bkF -bkF -doo -efU -eMC -cDB -dVJ -jDA -rNB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(191,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aEl -iCe -vsk -lje -rxa -bnl -bok -aFi -aFi -aEj -btA -uXG -mtI -bwm -kFu -tSL -cDB -cDB -aad -dtm -bwm -jFw -xpD -jQh -bwm -bwm -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(192,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aEl -wOf -bhB -fwI -eCK -wQU -xah -fwI -fwI -bqO -btB -btF -gIC -bwn -vRi -dKs -oKa -rgn -jRG -gmp -bwm -rNB -bwm -bwm -bwm -aht -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(193,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aEj -aEj -aEj -aEl -aEj -bnn -bom -aEj -bkF -bkF -xKc -vgp -oBb -bkF -bkF -bwm -bwm -bwm -euQ -vuQ -bwm -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(194,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aEj -aEj -aEl -bkF -bkF -kFD -eIL -mTS -pMG -iPz -sXR -sXR -pwS -bwm -vtl -bwm -bwm -aaa -aby -aht -aed -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(195,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aed -aby -aby -aby -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bnd -kRK -cPy -dir -mTS -ufa -oNE -oep -bnd -mlr -sEB -jEX -rui -bwm -aht -aby -aht -aby -aht -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -xGc -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(196,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bnd -qcD -xxw -lhA -lFh -ufa -taA -qcH -bnd -nNN -bwm -lWy -bwm -bwm -aaa -aby -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(197,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcR -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aby -aaa -bnd -qYq -sNz -nqV -oSL -hUJ -riW -jtf -bnd -aht -bwm -vHf -bwm -aaa -aht -aby -aht -aed -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(198,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcS -bdU -beU -beU -beU -beU -beU -beU -beU -beU -abI -aby -aaa -bnd -lGS -nIm -oEW -iuM -wXu -cOp -lGS -bnd -aaa -ahi -ahi -ahi -aht -aaa -aed -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(199,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcS -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -aTE -aaa -aby -aaa -bkF -dmT -tqX -nEb -pWm -uvo -mMz -dmT -bkF -aaa -aaa -aaa -aaa -aby -aht -aby -aht -aby -aht -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(200,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aed -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aed -aaa -bkF -bkF -bkF -pbR -blX -naq -bkF -bkF -bkF -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aed -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(201,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcS -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aed -aht -bkF -blX -blX -blX -blX -blX -blX -blX -bkF -aht -aed -aht -aed -aaa -aaa -aed -aaa -aby -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(202,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcS -bdU -beU -beU -beU -beU -beU -beU -beU -bkP -abI -aby -aaa -xKc -blX -blX -iPj -tfP -iPj -blX -blX -xKc -aaa -aby -aaa -aht -aaa -aaa -aby -aaa -aht -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(203,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcS -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -aby -aaa -bkF -blX -blX -blX -tuy -blX -blX -eQR -bkF -aaa -aby -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(204,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -bkF -bkF -bkF -xKc -bkF -xKc -bkF -bkF -bkF -aaa -aed -aaa -aby -aht -aht -aht -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(205,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -ajA -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcS -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aby -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aby -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(206,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcS -bdU -beU -beU -beU -beU -beU -beU -beU -bkP -abI -aby -aed -aby -aby -aby -aby -aby -aby -aed -aby -aby -aht -aby -aht -aed -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(207,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcS -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -aed -aaa -aaa -aht -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aht -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(208,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(209,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcS -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(210,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcS -bdU -beU -beU -beU -beU -beU -beU -beU -bkP -abI -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(211,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcS -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -aed -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(212,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aed -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(213,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -bcS -aaa -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aTC -aaa -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(214,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -abI -aTD -aUD -aUD -aUD -aUD -aUD -aUD -aUD -bbP -bcT -bdU -beU -beU -beU -beU -beU -beU -beU -bkP -abI -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(215,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aby -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -bcU -aaa -aTE -aTE -aTE -aTE -aTE -aTE -aTE -baI -aaa -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(216,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(217,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aed -aby -aby -aby -aby -aby -aby -aby -aby -aby -cFB -bcQ -cFB -aby -aby -aby -aby -aby -aby -aby -aby -aby -aby -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(218,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abI -abI -bcV -abI -abI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(219,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -cFB -abI -cFB -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(220,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aby -aby -aby -aby -aby -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(221,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(222,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(223,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(224,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(225,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(226,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(227,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(228,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(229,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(230,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(231,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(232,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(233,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(234,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(235,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(236,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(237,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(238,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(239,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(240,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(241,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(242,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(243,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(244,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(245,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(246,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(247,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(248,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(249,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(250,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(251,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(252,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(253,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(254,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -"} -(255,1,1) = {" -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC -rmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabyabyabyabyabyabyabyabyabyabyabyabyabyaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaaaaabIaaaaaaaaaaaaabJaaaaaaaaaaaaabIaaaaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyabIabOabOabOabOabOabOabOabOabOabOabOabOabOabIabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOabVabWabXabYabYabYabYabYabVabWabXabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOaccacdaceaceaceacfaceaceaceacdacgabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOachaceaceabOabOabOabOabOaceaceaciabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOabYaceabOabOabOabOabOabOabOaceabYabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyabIabOabWaceabOabOacjackaclabOabOaceabWabOabIabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyacmabOacnacoacpacpacqacracsactactaceacuabOacvabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOacwacxabOabOabOacyabOabOabOaceacwabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaabOabYacxabOabOabOabOabOabOabOaceabYabOaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaabOabVaczacAabOabOabOabOabOaceaceabXabOaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyabIabOaccacdacxacBacCacDacEacBaceacdacgabOacFabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaabOacGacHacIacJacKacLabYacMachacwaciabOacNaaaacOaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPacPacQacPacPabOacRacSacTabOacUacUacUacUacVaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIacPacWacXacYacPacZadaadbadcaddacUadeadfadgacVabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPadhadiadjacPadkadladmadnadoacUadpadqadracVaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPadsadtaduadvadwadxadyadzadAadBadCadDadEadFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadGadHadIadJadKadLadLadMadLadLadNadOadPadQacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSadTadUadVadWadVadXadYadXadZaeaadZaebaecacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadRadRadRadRadRadRadRadRadRadRadRaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIadSaeeaefadVaegadVaehaeiaehadZaejadZaekaelacUabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaaaabIaaaabIaaaabIaaaabIaaaaaaabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSaeeaefcnDcnEcnDaehaeiaehcnGcnHcnGaekaelacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaadRaemaemaenaemaenaemaenaemaemaemaemaemaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSaeeaefadVaegadVaehaeiaehadZaejadZaekaelacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeoaepaeqaeraesaetaeuagyaeWaeXaemadRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaacOaaaaaaadSaevaewadVaexadVadXaeyadXadZaezadZaeAaeBacUaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeCaeDaeEaeFaeGaeHtnPagyovBiLRaemabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyabIacPaeJkjKaeKaeLaeMaeNaeNaeOaeNaePaeQaeRadFaeSacUacUabIabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeTaeUaeUaeUaeVpeEdYelGputgiPHaemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaacPaeYaeZafaafbafcafdafeaffafgafhafiafjafkaflafmacUaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadRadRadRadRadRabIaemafnaeUafoafpafqafoaeHaeUafriPHaemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaacPaftafuafvacPacPafwafxafyafzafAacUacUaelaelafBacUaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahtahtahtahtabIaemagyafCafDafEafFafGafHafIagyagyaemaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPafKafLafMacPafNafOafxaabafzafQafRacUafSafSafTacUaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafUafUafUafUafUafXaiAafZaeUagaaeUagbaeUaeHaeUagcagdaemaaaaaaaaaaaaaaaabyabyabyabyabyabyabyabyabyabyabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIacPacPacPacPacPageagfcnCbIKaggagfaghacUacUacUacUacUabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagiszGlemagjafUaglaiAagnaeUagaaeUagbeSBaeHjXFagoagpaemaaaaaaaaaaaaaaaabIaaaaaaaaaaaaabIaaaaaaaaaaaaabIaaaaaaaaaaaaaaaaaarmCrmCrmCxGcrmCrmCaaaaaaaaaaaaaaaabIaaaabIaaaagqagragsadXagtadXagsaguagqaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagisOCmzlagvagwagxaiAagyagyagzagyagAagyagBagyagyagCaemaaaaaaaaaaaaaaaagPagPagQagQagQagPagQagQagQagPagPaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaabyabyabyabyabyaaaadXadXadXadXagDadXadXagEadXaaaabyabyabyabyabyaaaaaaaaaaaaaiSaiTaiUaiTaiTaiSaiSaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagiiCVsJpagFafUagHaiAagyagIaieagKagAagLagMagNagyagOaemabyabyabyabyabyagQcnJahdahdahdcnNahdcnPcnQcnQagQabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXadXagRadXadXagSabIaaaaaaaaaaaaaaaaaaaaaaiSaiTaiSaiScBkjHPkkkcBlaiSwMFaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtafUafUmsXqMiagTafUagVaiAagyagWaiHagYagAagZahaagYagyahbaemabIabIabIabIabIagQahqahqahqahqahqahqahqahqahqagQabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXadXahhadXadXagSabIaaaaaaaaaaaaaaaaaaaaaaiTplAqPBaiSjhDajuakhcBmakgcBnaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtafUhwjdVIiPUahjahkahlaiAagyagAahmagyahnahoahpagyagyagyaemabIabIsdkabIabIagPahqahqcnTahqcnTahqahqcnVahqagQabIaaaafJaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXalbahialbadXahsahtaaaaaaaaaaaaaaaaaaaaaaiSoMNiqcaiScBoajtalccBpaiScBqaiTaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtpfzahuahvahwahxahyahzahAahBahCahDahBahFahGahHahIahJahKahLahLahLahLahLahLahLahMahNahqahqahqahqahOahPahQagPabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaFjahRahtaaaaaaaaaaaaaaaaaaaaaaiTakfngpepJalQalQalRalSaiSajvaiTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtahtuqJahSahTahUahVahWahXahYahZaiaaibaicaicaidaieaifaigaihahLaiiaijaikailaimahLainaioahdahdahdaipaiqairaisagPabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiSgxecBruaCxjgmnGamFamGakgajvaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitaitaitaiuaitaiuafUoXeaivaiwaixaiyaizaiAaiBaiCaiDaiEaiFaiGaiHaiBaiJaiKahLaiLaiMaiMaiNaiOahLaiPagPagPagPagPagPaiQagPagPagPabIabIabIabIabIaiRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiTakfcBscBvcBwtappzFmnGaiSiEUaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitaiVaiWaiXaiYaiuafUafUafUafUaiZajaajbaiAajcajcajcagyajdajeajfagyagyagyahLajgaiMajhajiajjahLajkajlajmajnajoajpajqagPajrajsajsajsajsajsajsajsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiSeqDtapcBwnoCtaptapcPOaiSaiSaiSaiTajxajyajyajyajzaiTaiSaiTaiSaiSaiSaiSaiSaiSaiSaiTaiTaiSaiSaiSaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitajBajCajDajEaiuajFajGajGajHajHajIajHaiAajMajMajMajMajJajKajLajMajNajOahLajPajQajRajSajTahLajUajVajWajWajXajYajZagPaiRaiRakaakbakcakdakeajsaiRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahRahtaaaaaaaaaaaaaaaaaaaaaaiToMNgnagNvaiSaiSanmaiSaiSakjcBxaklakmaknakoaknakkakpcByaknaknaknaknaknaknaknaknaknaknaknaknaaDaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuakrajDaksaktaiuakuakvakwajHakxakyakzakAakBakCakDakEakFakGakHakIakJakKahLakLakMakNakOakPahLakQajVajVajVajVajVakRcCSakTakUakVakWakXakXakXakZabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtalaahtaaaaaaaaaaaaaaaaaaaaaaiSvlFklVnnhaiSanYajvaiSaobaleaiSaiTalfalgalgalgalhaiTaiSajvaaEaaGaaFaaFaaFaaFaaFajvaaQsbkajvaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiualiaiuaiuaiualjalkallajHalmalnaloalpalqalralsaltalualvalwalxalyalzahLcBijuwivOpfBalAahLalBalCalDalEalCalFalGalHaiRalIalJalKalLalJalMalNabIaaaaaaaaaaaaaaaaaaaaaahtahtahtahtahtahtahtahtahtahtahtahtahtalOahtahtaaaaaaaaaaaaaaaaaaaaaaiTtvjxbJsqhaiSaptajvaiSeawaleaiSaaaaaaaaaaaaaaaaaaaaaaaFaaHaaFaaFaaFaaIaaKaaIaaFaaFaaFaaFaaFaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaitajDaitaaaaiualTalUalVajHalWalXalYakAalZamaambamcamdameamfamgamgamgamgamhamiamjamkamlamgammamnamoampamnamqamramsamtamuamvamwamxamyamzalNabIaaaaaaaaaaaaaaaaaaaaaamAamBamCamCamCamBamCamCamCamCamBamCamDahtaaaahtaaaaaaaaaaaaaaaaaaaaaaiSaiTaiSaiTaiSsbkajuaiSajvaleaiSaaaaaaaaaaaaaaaaaaaaaaaFaaNaaRaaSaaSaaSaaSaaSaaTaaUaaVaaXaaFaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuaiuaiuaiuaiuahtahtaitajDaitaaaaiuskwamHtfZajHamIamJamKakAamLamMamNamOamPamQamRamgamSamTamUamVamWamXamYamZamganbalCancandalCaneanfalHaiRanganhanianjalJankalNabIaaaaaaaaaaaaaaaaaaanlahtahtahtahtahtahtahtahtahtahtahtahtahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiSaiSajvaiSajvaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabcaaLaaLabjaaLaaLaaLaaLaaLaaMaaZaaFaleaiTaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaitfINoFflcUaiuaiuaiuaiuanqaiuaiuaiuanransvCCantanuanvanwakAanxakAajMajManyanzanAanBanCanDanEanFanGanHanIanJanKanLalEanMandalEanNanOanPanQanRanSjvianUanVanTanWabIaaaaaaaaaaaaaaaanlaaaahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaacBUlcZcBUlcZcBUaaaaaaaiTalPcBAaiScnXaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabmaaOabnaaOaboaaOaaOaaOaaOaaPaaZaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaoIaoHaoHaoHaoJaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaitwwGycrsGrkJwgwnwRIlMUaoehOxaCgaCgaofePUlHcaiuaogaohaohaoiaojakAaokaolaomaonaooamgaopamXamXamWamXaoqaoramXaosaotaouaouaovaowaoxaoyagPaiRaiRaiRaiRaiRaiRajsajsaozaozaaaaaaahtalOahtahtahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaalcZapWaoBapUlcZaaaaaaaiScBBaiSaiSaiSaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabkaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaoIaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaitgGywDmhiwaiuaiuajDapBaiuaDmaiuaiuaiuaiuaiuaiuaiuaiuaiuaiuaiuakAaoOaoPaomaonanaaoQaoRaoSaoTaoUaoVaoWaoXaoYaoZapaapbapbapcapdapeapfapgaphaphapiaphapjapkaplapmapnahrcdmahtapoaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaappahtabIabIabIabIlcZapVaprapVlcZaaaaaaaiSapuaknaknapvapwaiSaaaaaaaaaaaaaaaaaaaaaaaFabqaaOaaOaaOabraaOaaOaaOabsabtabpaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaqbaqcaaaaqaaqbaqcaaaaqaaqbaqdaaaaqaaqbaqdaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaiuwYuwYuwYuaiuapzajDwoqapBaDmaiuaqgaqhaqiaiuaaaaaaaaaaaaaaaaaaapEapFapGakFapHaooamgapJapJapKapLapJapMapIamgamgagPagPagQapPagQagPajMajMajMajMajMajMajMapQaozapRaozaozcdmapSabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaaaaaaaapTapTapTapTapTapTapTapUapVapWcBUaaaaaaaiSaleapXapXapXapXapXapXaaaaaaaaaaaaaaaaaFaaFabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabuaaFabvaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuuQRajDajDaiuaqeajDlXcaiuaDmaiugjNlqcardaiuaaaaaaaaaaaaaaaaaaapEapEajMaomaqmaqnaqoapNaqqaqraqsaqtaquapOsBAaqvaqwaqxaqpaqyaqzaqAajMaqBaqCaqDaqCaqCajMaqEaqFaqGaqGaqGaqGalaaqHaqIaqIaqIaqJaqIaqIaqIaqJaqIaqIaqIaqKaaaaaaaaaaaaaaaapTaqLaqMaqNaqOaqPapTaqQaqRaqScBUcBUaaaaiSaleapXaqTaqUaqVcodapXaaaaaaaqYaaaaaaaaFabwabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabxaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaituaEajDjsfaiuaoKaoKnPAaiuaoLwRzarcaoeasraitaaaaaaaaaaaaaaaaaaariwxJarjarkaonarlalvaonaonarlaonarmarnaroarparoarparqarparrarsartaruarvarwarxaryarzajMaqEarAarBarCarDarEarFarGarHarIarJarKarLarMarNarOarParQarRarGaaaahiahiahiaaaapTarSarTarUarVarWapTarXarYarZasacBUahtaiSasbascasdaseasfasgapXapXashasiasjapXaaFabzabAaaWaaWaaWabBabCaaWaaWaaWabDabEabFabGaiTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaitpdqajDajDcHSdcLaBaegKaiuasoaiuatpatqatpaitaaaaaaaaaaaaaaaaaaapEapEajMasuasvaswasxatyatBawKaszrdBasAjenasBjxKtTZasDasEasCasyasFasGasHasIasJasKasLajMaqEarAasMasNasOarAarAasPasQasRasRasSasRasRasRasSasRasRasTasUarAatYbaHatYaaaapTasVasWasXasYasZapTataatbatcatdcBUaaaaiScoeatfatgathatiatjapXapXashatkatlapXaaFabHabTaaFaaYaaYatnatnavmavmavmatnatnaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaitajDajDrLiaiuapBxyBaBaaoKasoaiuausautauuaiuaaaaaaaaaaaaaaaaaabBWbBWajMatvatwatxajMatzatAatDajMatzatCatDajMatEatFatGajMajMatHajMajMatIaqCaqCaqCatJajMatKarAatLatMatNatOatPatQatRatSasSatTatTatUatTatTasSatVatWatXarAbcNauVatYahtapTauaaubaucaudaueapTaufaugauhauicBUahtapXapXapXaujapXaukapXapXaulashizBaumapXatnablabKabbabaawBatnauraurauraurauratnaiSaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCajArmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaiudcimwgtlcaiuaiuaiuaiuaiurrbaiuaiuaiuaiuaiuaaaaaaaaaaaaaaaaaaapEajMakAauxaonauzajMauxauAauzajMauxauAauzajMauBalvauCauDauEauFauGauHauIauHauHauHauHajMauJarAauKauLauKauMauNauOauPauQasSauRauRauRauRauRasSauSatWauTarAauUauVatYaaaapTauWauXauYauZapTapTavacBUavbavccBUaaaavdaveavfavgatfavhaviavjavkavkavkavkavlatnaxwabLabdaxwabeavmauraurauraurauravmatnavnatnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuaiuaiuaiuaiutpbaAaazZazYoPxsynwxbgiOekUaiuaaaaaaaaaaaaaaaavpavqavrakAavsavtavuajMavvavwavxajMavyavzavAajMavBalvauCavCavDavEavFavGavHavIavJavKauHavLaqEavMavNavOavPavQavRavSavTavUasSavVavWavXavYavZasSawaatWawbarAatYawcatYaaaaaaawdaweawfawgawhawiawjawkawlawmawdaaaavdawnawoawpawqawrawsawtawuawvawvawvfIuawwabgabMabhabgabiavmauraurauraurauravmawCawDatnabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoHaoIaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahtahtahtaxCaxCaxCaxCaxCaxCaxCaxCaDmaiuaiuaaaaaaaaaaaaaaaaaaapEawHakAawIawJrjFakAawIawJrjFakAawIawJrjFakAawLawMawNakAawOawPawQawRawRauHawSauHauHauHawTawRawUawVawWawWawXawYawZaxaasSaxbaxbaxbaxbaxbasSaxcaxdaxearAlQQaxgaxhahtahtaxiaxjaxkaxlaxkaxkaxmaxnawdawdaxiahtapXapXapXapXapXaxocoiaxpaxqaxraxtaxuepjaxvaxwabPabQaxwaxwaxyaurauraurauraurvzzaxzaxAavmaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaaaaoIaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxBaxBayzaxBayAayBayCaxCxuvkJoasraitaaaaaaaaaaaaaaaaaaajMaxEajMaxFaxGaxGaxHaxGaxGaxGaxIaxGaxGaxGaxJaxKaxGaxLaxJaxGaxGaxGaxMawRaxNaxOaxPaxQauHaxRaxSaxTaxUaxVaxWawUaxXaxYaxZayaaybaybaybaybaybayaaycaxYaydayeayfaygaxhaaaaaaaaaaaaaaaaaaabIawdayhaxnabIabIaaaaaaayiayjaykaylatfaymaBQaynayoayqcojaysaIhaytayuabRabSaxwaxwavmauraurauraurauravmaywayxavmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoIazGazHazHazIazJazKazKazKazKazKazKazKazKazKazKazKazKazKazKazLazHazHazHazHazHazHazHazHazHazHazHazHazHrKrazNazNhzdazPazQazRazSazNfAxtyLaitaaaaaaaaaaaaaaaaaaaiuayEayFayLayGayHayIayLayLayJayLayLayLayLayLayMayNayOaxGaxGayPayQayRawRaySayTayUayVayWayXayYayZazaazbazcawRazdazeazfazgazhaziazjazkazhazlazmaznazoarAlQQazpaxhaaaaaaaaaaaaabIaxiawdawdazqaxnawdaxiaaaaaaayiazrazsaztazuawraDfazvazxazycokazAazAazBazCazCazDaxwaxwavmauraurauraurauravmazEazFavmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaaaaoIaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxBaxBaxBaxBaAWaAXaAYaxCvtTaDmajDaiuaaaaaaaaaaaaaaaaaaaiuaAbaAcaAdpFyaAeaAfaAiaAiaAgaAhaAiaAiaAiaAiaAjaAkaAlaAmaAmaAnaxGaAoawRaApaAqaAraAsauHaAtaAuaAvaAwaAxaAyawRaAzaAAaABaABaABaABaACaABaABaABaABaADaAEaAFaAFaAGaAHaAHaAHaAHaAHaAHaAHaAIaAJaAKaALaAMaANaaaaaaapXapXapXapXapXaAOaDfcolaAPaAQayravkdbiaxvaxwaxwaASaxwaxwaxyaurauraurauraurvzzaATaAUavmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoHaoIaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxCaxCaxCaxCaxCvtTaDmnPAaiuaiuaiuaiuaiuebDebDgSHebDxLCebDaiuaBcaBdaBdaBdaBeaBfaBeaBdaBdaBdaBgaxGaBhaBiaBiaBiaBiaBiaBjaBjaBjaBjaBjawRaBkaBlaBmaBnaBoaBpawRaBqaBraABaBsaBtaBuaBvaBwaBxaBsaABaBraByaAHaBzaBAaBBaBCaBDaBEaBFaBGaAHaBHaBIaBJaALaBKawdaaaaaaaBLaBMaBNaBOatfaBPaBQaBRavkavkaBSavkdbiaxvaBTaBUaataBWaBXavmauraurauraurauravmaBYaBZatnabIabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiuaDmmtuaiuaCdnyOawEaiusbYaCexJyjjCxeBaCfaiuaChaBdaCiaCjaCkaClaCmaCnaCoaBdaCpaCqaBhaBiaCraCsaCtaCuaCvaCwvTLaCxgkRawRaCyaCzaCAaCBaCBaCCaCDaCEaCFaABaCGaCHaCIaCJaCKaCLaCMaCNaxZaCOaAHaCPaCQaCRaCSaCSaCSaCTaCUaCVaCWaCXaCYaCZaDaawdaaaaaaaBLaDbaDcaDdaDecomconcooaDgaDhaDiaDjaDkatnatnatnatnatnatnavmauraurauraurauravmatnaDlatnabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuapBaDmaCcaiuhHrezJqGukFxfuPgPVsJreEpnSohnuaiueQZaBdaDoaDpaDqaDraCkaDtaCkaBdaDuaxGaDvaBiaDwaDxaDyaDzaDzaDAaDAoyFaDBawRaDCaDDaDEaDEaDFaDGaDHaDIaDJaABaDKaCKaDLaDMaDLaCKaDNaABaDOaDPaDQaDRaDSaDTaDUaDVaDWaDXaDYaAHaDZaBIaEaaALaEbaANaaaaaaapXapXapXapXapXapXcopapXaEcaEdaEdaEeaEdaEdaEfaEgaEhaEdaEiatnauraurauraurauratnaEjaEkaEjaEjaEjaElaElaEjahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiuaDmaiuaiuhHrujIeOZaiupXTpELsJrvhkuuSjTuaiueQZaBdxjKaEmaEnaEoaEpaEqaEraBdaEsaxGaBhaBiaEtaEuaDAaDAaDAaDyaEvoyFaEwawRaExazaaEyaEzaEAaBmawRaEBaECaABaEDaEEaEFaEGaEHaEEaEIaABaEJaEKaAHaELpHoaEMaENaEOaEPaEQaERaAHaANaESaEaaALaAMaANaaaaaaaEToFoaETaEUaFFaETaEWaGVaEYaEdaEZaFaaFbaEdaFcaFdaFeaEdaEdatnatnatnatnatnatnatnaFfaEkaEjaFgaFhaFiaFibZVahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaitaBamLBwxbaCgaCgdgIkQZaiuwrUelksJrgAGuAUwTDaiuaFkaBdfhMaFmaFmaFoaFmaFpaGaaBdaFraxGaBhaBiaFsaFtaDAaDAaDAaDAaFuoyFaFvawRaFwazaaFxaFxaFyaFzawRaEBaDJaABaABaABaABaABaABaABaABaABaDOaEKaAHaAHaAHaFAaAHaAHaFAaFBaAHaAHaFCaBIaEaaALaFDawdaaaaaarYCjOBcoraFEvuPlKLkIOaDZcotaEdaEZaFGaFHaFIaFIaFJaFIaFKaFLaFMaEdaFNaFOaFPaFQaEjhUtaEkaEjaFRaEjaEjaEjaEjahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaitoTCwUzwigaiuezFujInihaiumpymXqsJrkxjoCnuVfaiuaFUaFVaFWaFnaFXaFYnBwaFngQoaBdaGbaGcaGdaBiaGecouaGfaGgaGhaGilnnaGjuluawRawRawRawRaGkaGlaGmawRaEBaAAarAaGnaGoaGpaGqaGraGsaGnarAaAAaEKaxiaGtaGuaGvaGwaGwaGvaGxaGyaANaGzaBIaEaaALaDaawdaaaaaaaETqbZaETaGAaGBaETaGCaGDaBIaEdaEZaGFaGGaGHaGFaGFaGFaEdaGIaGJaEdaGKaGLaGMaGNaEjaFiaEkaEjaGOaGPaEjaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaoIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaitaitaitaiuaodujIkxsaiuaiuaiuaiuaiuaiuaiuaiueQZoEAoEAoEAoEAoEAoEAoEAoEAoEAaGUaGVtHkaBiaGXaGYaGXaBiaBiaBiaGZonXaGXaANaHbaHcawRawRawRawRawRaHdmyuarAaxiaHfaHfaHfaHfaHfaxiarAaHeaHgaxiaANaHhaHiaHjaHjaHkaHlaANaANaANaEYaHmaGUaANaANawdawdaETaETaETaHnaETaETcosaDZaBIaEdaEdaGFaHoaEdaHpaEdaHqaEdaHraGJaEdaHsaHtaFiaGNaEjaFiaEkaHuaFiaEjaEjaEjaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaIraqcaaaaqaaIraqcaaaaqaaIraqcaaaaqaaIraqcaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaiuaqgiJiqGugKGguejhkjhkoTpjhkjhkaHCgjqoEAuoSuoSuoSuoSuoSuoSuoSoEAaHEaHFaHGhqoaHHaHIaHHaHJaHKaHLaHMqXHjYegNGjYeaHOaHPaHQaHRaHQaHSaHTaHUaHVaHWaHXaHXaHYaHXaHXaHZaHVaHUaIaaIbaHVaHVaHVaHVaHVaHVaHVaHVaIcaIdaHGaIeaCZaIfaIgaHNaHNaHNaHNhFyaIiaHNaHNcoyaDZaBIaIjaEdaGFaIkaEdaIlaEdaIlaEdaEdaDlaEdaEjaEjbfuaEjaEjaFiaEkaEjaGOaIpaIqaElaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNahtaaaaiuaiuaiuaiuaiuaICaiuaiuaiuaiuaiuaIHaiuoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaILaIMaDZaDZaINaIOaIOaIOaIPaIQaIOaIOaIOaIQaIPaIOaIOaIRaIOaISaITaIVaIOaIOaIWaIWaIXaIWaIYaDZaDZaIZaJaaJbaDZaDZaDZaDZaDZaDZaDZaDZaGVaDZaBIaJcaJdaJeaJfaIUaIUaIUaIUaJhaJiaIUaIUaJjaJkaJlaJmaJnaFIaJoaEdaEdaEdaEdaEdaJpaEkaEjaJqaJraJsaJtaJsaJsaJvaEjaFiaEjaJwaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaoIaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoJaoHaoHaoHaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaHziabxaQrgsaJDpvKgxqniyaJFriFaiuofXiSzoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaDZaJGaJHaJIaJJaJIaJIaJIaJKaJLaJIaJIaJMaJLaJKaJNaJOaJPaJOaJOaJQaJSaJOaJOcozcozcoBcozcozaJOaJOaJTaJQaJUaJOaJVaJOaJWaJRaJOaJVaJOaJPaJRaJXaJYaJZaKaaKbaJIaJHaJIaJIbheaKeaJIaJIaJIaJHaKfaKgaEdaKhaGFaKiaKjaEdaKkcCXcCYcCZaEjaKnaEjaKoaFiaKpaFiaKnaKqaFiaEjaKraEjaLnaLmaLmaLoaLoaLmaLmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaKAfmUjeqjeqaKDaKEaKEaKGxhEaiuaiuaIHoEAuoSuoSuoSrJZuoSuoSuoSoEAaALaDZaKIaKJaKKaKLaKKaKJaKMaKNaKOaKPaKQaKQaKRaKSaKQaKTaKTaKTaKTaKTaKUaKTaANaKVaKVaKVaKVaKVaANaKTaKYaKZaLaaKZaLbaKZaKYanXaLcaLdaLcanXanXaBIaEaaALaLeaLeaLeaLelAslAslAsklblAslAslAslAslAscDaaEdaEdaEdaEdaEdaEdaLhcDaaLiaLjaKqaKnaLkaLlaFiaFiaFiaKnaEjaEjaEjaEjaLmaNTaLmaMEaMFaMGaMHaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKyaKzdqGwquaKBaOkwOapGepGegmOpGepGegvfftWsgcaiuaIHoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaDZaLvaLwaLxaLyaLzaKJaLAaLBaLCaLDaKQaLEaLFaLGaKQaLHaLIaPzaLKaKTaNjaKTaGnabIabIabIabIabIaGnaKTaKYaLQaLRaLSaLTaLUaLVaLWaLXaLYaLZaMaanXaMbaEaaMcaLeaMdaMeaMflAsaMgaMhaMiaMjaMkaMlaMmaMnaMoaMpaMqaMraMsaMtaMuaMvcDaaMwaMxaJsaMyaLkaMzaEjaMAaFiaMBaJsaJsaMCaMDaLmxeraNUeFGaNVaNXaNYaLoabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxeeaHAaHAaHAnYnaJEqUwaQtaQuaQtaQuaQtkvjaJEnDxaiuaIHoEAuoSuoSuoSuoSuoSuoSuoSoEAaMRaMSaMTaMUaMVaMWaMXaKJaMYaMZaNaaNbaKQaNcaNdaNeaKQaNfaNgaLLaNhaKTaNiaKTaKTaKTaKTaKTaKTaKTaKTaKTaKYaNpaNqaNraNsaNtaLVaNuaNvaNwaNxaNyaNzaNAaJYaNBaNCaNDaNEaNFiKbaNHaNIaNJaNKaNLaNMlAslAscDaaNNaNOaNOaNOaNPaNOaNQcDaaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaNRaPfaLmaQophSphSphSphSaPiaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKyaKzaKzwquaKBaWExSZaOfaOgaOhaOgaOfaOkcoNgLFaiuaOmoEAuoSuoSuoStCPuoSuoSuoSoEAaALaDZaKIaKKaOtaOuaOvaKJaKPaKPaKPaKPaKQaKQwBgaKQaKQaKTaKTaOwaKTaKTaOxaOycoFcoGcoHcoHcoJcoJaOzaOAaKYaOBaNqaOCaNsaODaLVaOEaOFaOGaOHaOIaOJaOKaOLaOMaONaOOaOPaOQaORaOSfwlfwlfwlaOUdseaOWaOXcDaaOYaOZaPaaPbaPbaPcaNOcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaNRaQjaQkaPgdqYdqYcvfxeraQpaLoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaWEwOaxLiaWKaWKaWKaPoaWEaPqaHzaiuaIHoEAoEAaPtaPtxOCaPtaPtoEAoEAaALaDZaPwaKJaKJaKJaKJaKJaNmaPxaPyaPzaLLaLLaLLaPAaLLaLLaPBaLLaPCaPDaNjaLLaPEaPEaPEaPEaPEaPEaPFaPGaKYaPHaPIaPJaPKaPLaLVaPMaPNaPOaPPaPQanXaMbaPRaPSaLeaPTaPUaPViKbaPXdMBaPZdMBaQaaQblAslAscDaaQcaQdaNOaQeaNOaQfaQgcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaRsaRtaRuaRvaRwaQnaRyaRzaLmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabyabyabyabyaedabyabyabyabyabyabyabyabyabyabyabyaedabyabyabyabIaedaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaHAwwraQvaQraRDaREaRFnGiaJEklBeLtaiuaIHayDoEAnsyuosjAyaQwaQxoEAaKHaHEaQBaQCaQDaKTaQEaQFaQGaQGaQHaQIaQJaQKaQLaQMaQNaQNaQOaQPaQPaQPaQQaQRaLLaPEaQSaQTaQUaQVaPEaQWaQXaKYaQYaQZaRaaRbaRcaKYanXanXanXanXanXanXaRdaPRaReaLeaRfaRgaRflAsaRhaRiaRjdMBaRkaRllAsaRmcDaaRnaRoaRpcDaaNPaRqaNPcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaLiaLmsrZsZhsqQsqQaSndaYaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaHAhwdeApaQraSvaSwaSxnGiaRCklBaRBaiujThvIcscpeDCxnPrHAeHIaRGoEAaLuaALaPRaKIaRIaKTaRJaRKaRLaRLaRMaRLaRLaRLaRLaRLaRNaRNaROaRNaRNaRNaRNaRNaRPaPEaRQaRRaRSaRTaRUaRVaRWaKYaKYaKYaRXaKYaKYaKYaPBaRYaRZaSaaSbaKTaMbaPRaMcaPWaScaSdaSclAsaSeaSflAsiKbaSgaShlAsaLgaLgaSiaSjaSkcDatLPcDacDacDaaLgaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaSlaLmaLmaLmaLmaSmaSnaSoaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaHAwwraJEaQraTKaTLaTMnGiaQsklBaRBaiuaSuxxSoEAtnYqjxffJyfOqWMoEAaLuaALaPRaKIcoVaKTaSzaRLaRLaSAaSBaSCaauaSEaSFaSGaRNaRNaSHaRNaSIaSJaSKaSLaSMaPEaSNaSOaSPaSQaPEaSRaSScoWcoWcoWaSTaQNaQNaQNaQNaQNaQNaQNaSVaSWaSXaPRaHEaSYaSZaTaaSZaTbaTcaTdaTeaTfaTgaTheeQaTiwDZaTkaTlaTmaTnaTqaTpaTqaTraTsaTraaaaaaaaaaaaaaaaaaaaaaaaaaaaElaTuaTvaTwaTxaTxaTyaTzaTAaTBaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaOkftWoLRaMLaMLaMLaPnaTJhkQaOsaiuaiuvAqoEAuCSiPOoEAhDGoEAoEAaRHaTOaPRaTPaKTaKTaSzaRLaRLaTQaTRaTSaTTaTUaXSaTWaRNaTXaTYaTZaSKaSKaUaaRNaUbaPEaUcaUdaSPaUeaPEaPEaUgaPEaPEaPEaPEaPEaPEaPEaUfaUfaUfaUfaNjaKTaUiaUjaUkaUlaOTaOTaUmaOTaOTaUnaUoaUpaUqaUraUsaUtaUuaUvaUwaUtaUxaSkaSkaSkaUyaUzsQtaUAaaaaaaaaaaaaaaaaaaaaaaaaaEjaUBaGOaUCaEjaEjaEjaEjaEjaEjaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabIaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTHaKyaKzaKzwquaKBaOkcoNpGepGegmOpGepGevsJftWfUAwEnnfiuLFdpamalpOrdpaaUGaUHaUIaUJaUKaULaUMaUNaUOaUPaUQaURaUSaUTaUUaXSaXUaXSaUWaRNaUXaUYaSKaUZaVaaVbaRNaVcqENaPEaVdaPEcpaaPEaPEaVfaVgaVhaVicpbcpcaVjaPEaVkaVlaVmaUfaVnaUfaVoaJIaJZaUsaVpaVqaVpaVpaVpaVraVsaVtaVuaVvaLfaVwaVxaVyaTmaVzaVAaTmaTmaVBaPdaPdaPdaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaElaEjaVEaEjaavaEjaVGaVHaVIaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxeeaHAaHAaHAnYnaJEkvjaQtaQuaQtaQuaQtaVNaJEaVMaPvaJEaVOdTVdTVgeUdTVaVPdTVaQzaVQxvOwunaVRaVSaVSaVTaVUaVSaRLaRLaRLaRLaVVaRLaRLaRNaVWaVXaSKaSKaVYaVZaWaaWbbdvaWdaWeaWfaWgaWhcpeaWiaWjbahbahbahaWlaWmaPEaWnaWoaWpaWqaWraUfaMbaDZaMcaPWaWsaWtaWuaWuaWuaWuaWvaVtaPYaWweexaWxaVxaWyaTmaWzaTmaTmaTmaWAaUyaWBsQtaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaEjaUCaEjaFiaHuaFiaFiaFiaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqICaKzwKawqufTYaWEftWaOfaOfgpCaOfaOfcJofwexmpfBtaWFaWFaWFaWIaWJaWFaWJaWFfBtnyBaCZaEaaKIaVSaWMaWNaWOaVSaWPaWQaWQaWRaWSaWTkEWaRNaRNaRNaRNaWUaWVaWWaRNaWXaWYaXbaXbaXbaXcaXdaPEmjnbahbahaXhbahbeBbckaPEaXkaXlaXmaXnaXoaXpaXqaHNaXraLfaPWaXsaXtaXuaPWaLfaLfaVtaPYaXvaLfaXwaVxaXxaTmaVzaTmaTmcCBaXyaXzaXAaXzaaaaaaaaaaaaaaaaaaaaaaaaaaaccsaEjaEjaUCaEjaFiaEjaFiaXCaXCaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaWKppQaWKduQppQaWKaWKppQaWKaOsaHzaXFaXGkAaaXKaXKaXIaXJaXIaXKaXBaGUaHmaXLaXMaXNaXOaXPaVSaXQaXRaXSaXTaXUaXVaXWaXXaXYaXZaRNaRNaYaaRNaRNaYbaRNaRNaRNaPEaPEaYdaPEaYeaYfaYgaYgaYgaYhaYiaPEaYjaUfaYkaYlaYmaUfaMbaDZaMcaLfaYnaYoaYpaYqaYraYsaPWaVtaPYaYuaLfaYvaYwaYxaYyaYzaTjaYyaYAaYBaLgaLgaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaZvaTxaZwaYCaFiaEjaYDaYEaYFaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaXHaYHaYIfowaYJaYKaXIaALaEaaYLaVSaVSaYMaVSaVSaYNaXSaYOaYOaYPaXSaXSaXSaXSaYQbgkaYRaYSbcerxVaYVaYUaYTaYXaYYcpgaYZaZaaZbaZccphaZdcpicpjcpkaZfaZgaUfaUfaUfaUfaUfaZhaDZaZiaLfaZjaVuaPYaPYaOVaZkaZlaZmaZnaOTaUlaZoaZpaZqaZoaZoaZraZsaZtcCTaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaUCaFiaEjbaGbaGbaGbaGbaGbaGbaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaabyabIabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZyaZyaZyaZzaZAovMaZAaZAaZAaZAaZAaZCaZDaZEaXHaZFaZGaZHaZIaZJaZKaZLaZMaZNaVSaZOaZPaZQaVSaZRaZSaZTaZUaZVaZWaZXaXSaXSaXSgamaYSaYSaYSaYScplbabbacbadbaebahbagbahbagbahbagbeBbagbahbagbahbanaPEbaobapbaqaPEbaraDZaMcaLfbasbatbaubavbawbaxaPWaPYaPYaPYbazaTmaZtbaAbaBbaCbaDbaEaZpbaFaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaUCaGOaEjcfQbbLbbMrWErWEsutrWEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaacFBabIcFBabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbaJbaKbaKbaKbaKbaLbaKbaMbaNbaNbaNbaNbaObaPaXHbaQbaRbaSbaTbaUaXIaALbaVbaWaXMbaXbaYbaZaVSaYNbbaaZTbbbbbcaXSbbdpWTpWTttSaZZaYSbbgcpmcpnbcfbbibaabblbbmbagcpobagbbrbbobbpbbqbbrbbsbbpbagbbtbbubbvbbwbbxaPEaMbbbybbzaLfaLfaLfaLfaLfbbAaLfaLfbbBbbCbbDaLfbbEbbFbbGbbHbbIbbIbbJbbKbbIbbIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjbcHbcIhSMbcJbcKbcLuXHoCXoCXatZbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcUbcQbcQbcVabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxjzzbbQaZxbbRbaKbbSaZxbbQjzzbbRbaKbbTbbUaXHaXHaXIbbVaXIaXKaXKaALaEaaKIbbWbbXaZPbbYaVSaYNaZSaZTbbZbbcbcaaRLbcbbccbcdaRNcpqcprbcgbchcpsbbhbaabblbaebahcptbahbbrbcobbpabUbbrbcqbbpbahbcrbcsbctbcubcvbcwaSXaDZaMcaEjbcxbcyaFiaFibczaFiaLfaLfaLfaLfaLfbbEbcAbcBbcCbbIbcDbcEbcFbcGbbIaaaaaaaaaaaaaaaaaaaaaaEjaElaEjaElaEjaUCaFiaEjmvmbdRbdSrWErWErWErWEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaacFBabIcFBabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbcXaZxbcYbcZbdaaZxbcXaZxbbRbaKbbTbdbbdcbddbdebbTbaKbdfaGVaALaEaaKIbbWbdgbdhbdiaVSaYNaXSbdjbdkbdlaXSbdmbdnaDZbdoaRNcpubcfbdpbdqaYSbdrbaabblbcmbagcpvbdwbdvbdwbdvbdxbahbagbahbagbckbagbahbagbahbdyaMbaDZaPSaEjbdzqAMaFijBhbdBbdCbdCbdDbdCbdDbdEbbEbdFbdGbdHbdIbdJbdKbdLbdMbbIaaaaaaaaaaaaaaaaaaaaaaEjbdQaTxaTxaTxaZwaFiaEjbaGbaGbaGbaGbaGbaGbaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyabIabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbdVaZxaZxaZxaZxaZxbdVjzzaYGaYGbbTbdWbdXbdYbaKbdZbeabdfaGVaALaEabebaVSbecbedbeeaVSaXQbefbegbehbeibejbekbelbembenbeocpwbeqberbesbepcpxbeubblbaebexbagbeybezbeAbagbeBbagbeCbeDbeEbeFbeGaZeaXbbeHaPEaBIaDZaALaEjaFiaEjbeIbeIbeIbeIbeIbeIbeIbeIbczbbEbeJbeKbeLbdIbeMbeNbeObePbdIbdIbdIaaaaaaaaaaaaaaaaEjbeRaEjaFiaFibeSaFikIoaEjbfPkKIeZAvzTdsvaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGbeYbeZbfabfbbaNbfcbfdbfebffbfgbfhaKIaVSbfiaVSaVSaVSbfjbfkbflbflbfmbfnbdmbdnaDZbfoaRNbfpcpycpzcpAcpBaRNbgkaRNcpCbfraPEcpCcpCaPEbfsbftbfsaPEcpCcpCaPEaPEbdybdyaPEaPEaEYaGVaGUaEjbfuaEjbeIbfvbfwbfxbfybfzbfAbeIbczbbEbfBbfCbfDbdIbfEbfFbfGbfHbfIbfJoPybfKaaaaaaaaaaaaaEjaUCaKqaFiaFiaFibfMbfNaEjbfPaFitDngUbdLYaEjaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbfYbfZbfZbgabgbbgcbgdbgdaALaEabgebgfbggbghbgiaawbdmbdmbdmbdmbgjbdmaRLkEMaDZbfoaRNbgkbglbgkbgkbgkaRNbgnbgobgpbgqbgrbgsbgpaPEbgtbgubgtaPEbgvbgwbgxbgybdobdobgzaDZbgAaDZaALbgBaDZbgCbgDbgEbgFbgGbgHbgIbgJbeIbczbbEdpsbbEbbEbbIbgKbgLbgMbfHbdIbdIbdIaaaaaaaaaaaaaaaaEjaUCaEjaEjaEjaEjaEjaEjaEjaEjhOzaFiaFixylaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgSaZxbbTbfYbgabgUbgVbgWbgXbgYbgaaALbgZbhabhbbhcaJIaJIaJIaJIbhdaJIaJIbheaJIbhdaJIaJIaJZaJIaJIbheaJIaJIaJIaJIaJIbhdaJIaJIaJIaJIbhfaJIbhdaJZaJIbhgaJIaJIaJIaJIaJIbhdaJIaJIbhebhhaJZaJIaJIbhibhjbhkbhlbhmbhnbhobhnbhpbhqaEjaZvaTxaTxbhrbhsbhtbhubhvbbIaaaaaaaaaaaaaaaaaaaaaaEjeCwgfibhzbjDgfibhzgfibhBaEjaEjnZwaEjaEjaEjahtahtahtahtaEjaElaElaElaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbhEbfZbhFbhGbhHbhGbhIbgdbhJbhKbhLaDZaALaDZaDZaDZaDZaBIaDZaDZaDZaDZbhMaDZaDZaALaDZaDZaDZaDZaDZaDZaDZaDZaBIbhNaDZaDZaDZcpHcpIcpJbhOcpKcpLcpMaDZaDZaDZwVCaBIaDZaDZaDZbhMaALaDZbhPbhQbeIbhRbhSbhTbhUbfzbhVbeIaNRaEjaUCaEjaEjbbIbbIbbIbbIbbIbbIaEjaEjaaaaaaaaaaaaaaaaEjaUCaEjlEnlEnlEnlEnaEjfwIaEjoRXaFigSIaKqaEjaElaElaElaElaEjbnliCewOfaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbfYbfZbibbhGbicbidbiebgdbifaIeaHNaHNbigaHNaHNaHNbihbiibijbikbilbikbimbikbikbinbimbikbikbikbikbikbijaHNaHGbigbihaHNaHNcpNcpOcpPbiocpQcpRcpSaHNaHNbihaHNaHGbipbiqbipbirbisaHNaHNbipbitbiubhSbivbiwbeIbeIbeIbixbiybizaTxaTxaTxaTxbiCaFiaEjaGPpKdaEjaEjaEjaEjaEjaEjaEjaUCbkFpnUuwbbiDvYNbkFfwIaKqbiFgfigfigfintjgfigfigfigfintjgfivskbhBaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGbbTbiIbiJbiKbiLbiMbgVbiNbgabiObiPbjjbiRbiSbiTbjLbjLbiWbiXbiYbiYbiYbiYbiZbiYbiYbjabjbbjabjabjcbjcbjdbjebjdbjfbjgbjhbjdbjicpTbjkaBIaDZaDZbjlcpUbjnbKMbjpbltbjrbKMbGabKMbBoaANbjmbjmbjmbeIbjubhSbivbiwbeIaKqbjvygZbjwbjwbjwbjwbjwbjwpdWaTxbjxbjxbjxbjxobjbjxbjxbjxbjxoTlqHIbkFpnUbjBbiDvYNbkFbjEgfibjFaFibfMybXbfMybXfNvbfMybXfNvaFiljefwIaElahtaaaaaaaTCbeUaTEaaaaTCbkPbaIaaaaTCbkPbaIaaaaTCbkPbaIaaaaTCbkPbaIaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbbQaZxaZxaZxaZxaZxbbQjzzaYGaYGbbTbfYbfZbfZbjIbjJbjKbgdbgdbjLbjLxQcbjLbjLbjLbjLbjPwUfbjRrvHbjSbjTbjUbjVbjWbiYbjXbjYbjZbkabkbbkcbkdbkebkfcpXcpYbkibjcbjdbjdbjeaEYaGVaGVbGabKMbKMbBobkmbmCbkobkpbkqbkrbksbktbkubkvbkubktbktbkwbktbktbktbkxbkxbkxbjwbkybkzbkAbkBbjwbjwbjwbjwbjwbjwbjwaLiaFiaEjaFiaEjvzPaKqbkFbndbkHbndbndbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFrxaeCKaEjaEjaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbcXaZxbkQbkRbkSaZxbcXaZxbbRbaKbbTbkTaYGbfZbgdbgdbgdbgdbkWbjLbkXbkYbkZblakSOblbblbwUfblcbiYbldblebldblfblgbiYblhblibljblkbkbbllbkhblmblncpZcqablpbkeblqblrbjdblsaDZblubKMblvblwblxblybmCblzblAblBblCblDbktblEblFblGblHblIblJblKblLbktblMblNblMbjwblPblQblRblSbjwblTblUblVblWqDJbjwtimbjwbjwbkDbjwvzPaEjbkFtaTmqltdBblZxWlbnjblXbnhbnibnjblXbnhbnibnjblXbnhblXbkFbnlwQUbnnaEjaaaaaaabyabyabyaedaedabyabyabyabyabyaedabyabyabyaedabyabyabyabyabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbdVaZxbbRbaKbbSaZxbdVjzzbbRbaKbbTbfYbmcaYGbmdbmebmfbmfbmfbmgbmhbmibmjbmkbjLbmlbjLbmnbiXbiYbmpbmqbldblfbmrbiYbmsbmtbmubmvbkbbmwcqabpTbmxcqcbmybmzbkhbkhcqdbmAaBIaDZaDZbltbmCbmCbmCbmDbmHbmIbmJbkncqebkobkubmLbmMbmNbmObmObmPbmQbmRbktbmSbmTbmUbjwbmVbmWbmXbmYbjwbmZbnabnbbnavmGuAZeXonJIxPavxpbjwiWVwAIbkFlWHbpnbpnmQmhPNbnjblXblXblXbnjblXblXblXbnjblXblXblXbkFbokxahbomaElaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabslaZxbslbaKbaKbaKbaLbaKbnobnpbnpbnpbnqbnrbnsbntaYGbnubnvbnvbnvbnvbnvbjLbjNbnwbjNbjLbjLbnxiGJbnybiYbldbmqbldblfbnzbiYbnAbnBbnAbjabjcbnCbnDbpTbnEbnFbnFbnGcqfbkhcqdbmAaBIaDZaDZcqhcqicqibnIbJIbyKbyKbnLbnMbnNbkobktbnObmMbnPbnQbnQbnRbmMbnSbktbnTbnUbnTbjwbnVbnWbnXbnYbjwbnZbqsbqspbIbnZboebofbogbohbocbjwaFivzPbkFwfshEXthWilDnxTbnjbprblXblXbnjbprblXblXbnjbprblXblXbkFaFifwIaEjbkFbndbndbndbndbkFbkFbkFxKcbkFbkFaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabtKbtLbcXbtMbonbonbonbonboobonbaKbaKbaKbaMbopbfYbntaYGboqbnvborbosbotboubovbowboxboybozbnvboAbjQaaxbiYbldboCbldblfboDbiYboEboFboGbjcboHboIboJbpTboKboLboMboNboNboNboObjdbmBjcTbjmbKMboPboQboRboSboSboTboUbsUbyCbkobktboXbmMbnPbnQbnQbnRbmMboZbktbpabpbbpcbjwbpdbpeeSLbpgbphbpibqsbqsbqspDPboeboabpobppbncbjwbpqvzPbkFpfPbrObpnedJuePbnjoSckNfhvWbnjbqGbqHbqIbnjbqJbqKbqLbkFaFifwIbkFbkFkRKqcDqYqlGSdmTbkFblXblXblXbkFahtabyahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxaZxaZxaZxaZxaZxaZxpEHbaKbaKbaKbbTbfYbptaYGbpubnvbpvbpwbpxbnvbpybpzbpAbpBbpBbpCbpDbpEbpFbpGbpHbpIbpJbpKbpHbpMbpNbpObpPbpQbkhbpRbpSbpTbpUbpVbpVbpWbpXbpWbpVbpYvKqxjemhncClbqbcClcClbqbbqcbqbcClbqdbqebqfbktbqgbqhbqibqibqibqjbmMbqkbktbqlbqmbqnbjwbqobqpbqqbqreYredlbqtbqtbqtnBLbqvbqwlARbqxtdpbkFbnjbqAbkFbqCbzgbqEbqFostbrRbsabsbigEbnjbsabsbbscbnjbsabsdbsebkFaEjbqObkFkFDcPyxxwsNznImtqXbkFblXblXblXbkFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxdeJbaKbaKbaKbbTbqSaYGaYGboqbnvbqTbqUbqVboubqWbpzbqXbqYbqZbrabrbbrcbrdbiYbiYbiYbiYbiYbiYbiYbrebrfbrgbjcbrhbribjdbpTbpUbpVbrjdHZbrlbrkbrmbpYnTrtTlcqicClpYwbrqbrrbrsbrtbrucClbrvbyCbkobkubrwbrxbmMbrybrzbrAbrBbrCbktbrDbrEbrFbjwbrGbrHbpfbqsbqsbqsbrKbrLbrMbqsbqsbrHbqsbqsoDPbrRbrTbrUbrVbrWbrXbrWbrWnOYqVPbtwbtwbtxitlbtwbtwbtxbsfgIGgIGxjTbkFbtAbtBxKceILdirlhAnqVoEWnEbpbRblXiPjblXxKcaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxsIKbaKbaKbaKbbTbsmaYGbsnboqbnvbsobspbsqbnvbsrbssbstbsubsvbswbsxbsybszbsAbsBbsCbsCbsDbsEbsAbsFbkgbsGbjcbjdbjdaaybsHbsIbpYbsJbsKbsLbsMbsNbpYgDRtTlcqicClgFobyFbsRbsSbsRbsTcClcqkcqlbsVbktbsWbsXbsYbsZbtabtbbtcbtdbktbtebtfbkxbjwbtgbrHbthbtibrJbtkbtlbtlbtlxgGbrJbtpbtibrJbtsbttbxFbxFumevMxcsubtubtvdgzqtFbuIbuJdxcbuLbuMbuNbuObuQbuNbuNbtEqdiuXGbtFvgpmTSmTSlFhoSLiuMpWmblXblXtfPtuybkFahtabyahtaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxwjQbaKbaKbaKbbTbtNbtObtPbtQbnvbtRbtSbtTboubtUbtVbtWbtXbtYbnvbtZbsybjQbuabubbucbudbucbuebuabkhbufbrfbugcqmcqmcqmblobuibpYbujbukbulbumbunbpYvzAtTlcqitJrcSKcCtbupbuqburbuscClbutbyCbuubktbkubuvbkubktbktbktbktbktbktbuwbuxbuybodfjsbuAwBbwBbwlKbuBdkRbuCgDZcKAbuDbuEbuFbuGbuHbrRwkZbuKbkFofNxzpxprnuvjxljwebwebwebwfcucbwhbwebwfbuUbwebwebuWbkFmtIgICoBbpMGufaufahUJwXuuvonaqblXiPjblXxKcaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxpEHbaKbaKbaKbbTbfYaYGbvabvbbnvbnvbtSbnvbvcbouboubvdbvebvcbvcbvfbvgbvhbvibvjjsjbvkkQytixrarjUVbvmbvnbvobvlbvlbvlbvlbvpbvqbvrbvsbwUbvtgGApxDbvugkScqitzHduFbyFbvwbvxbvybvzbqbbsUbvAbvBbvCcqpbvEbvFbvGbvHbvIbvJbvKbvLbvMbvNbvObvPbvQbvRbvSbvTbvUeNqbvVbvWbvVbvYbvZbwabwbbwcbjwbkFbnjdqwbkFgdLugCihkihktXnbrRbxMbxNbxObnjbxMbxQbxRbnjbxMbxSbxTbkFbwmbwnbkFiPzoNEtaAriWcOpmMzbkFblXblXblXbkFaaaaedaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoQmpqPbcXqRmbbRbaKbaKbaKbbTbfYaYGbwsbwtbnvbnvbwubnvbwvbwwbwxbwybwzbwAbvcbwBbwCbwDbwEbwFbwGbwHbwIcSJbwEbwKbwLaazbwNbwObwPbwPcqsbwQbpXbwSbwTbsKbwVbwWjZGhIZtTlcqitzHbxabxcbxdbxebxfbxgbxhbxibxjbxkbxlbxmbxnbxobxpbxqbxrbxsbxtbxubxvbxwbxxbxybxzbxAbwabxCbxDeNqcxtbxGbxHbvYbxJefubxKbxLbjwldQbwmspzbkFiLlgdJpXgcPThfZbnjbzkbzlbzmbnjbznxxObzpbnjbzqbzrbzsbkFkFuvRibkFsXRoepqcHjtflGSdmTbkFblXblXeQRbkFahtabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxaZxaZxaZxbxYbxZbyaaYGbybbycbnvbydbtSbyebyfbygbyhbyibyjbykbvcbylbymbynbsAbyobypbuabyobsAbsAbyrbysbytbyubyvbyubyvbyubyvbpYbywbyxbsKbyzbyAbpYtqOtTlimEbyDbyEnIUbyGbyHbyImdLbqbbyJhiYbyKcqtbyLbyMbyNbyObyPbyQbyRbySbyTbyUbyVbyWbyXbyYbyZbzabzbbzcurPbzdbzebzdfkHtAKbzhbzibzjbjwlNWbwmspzbkFbkFbkFbkFbkFbkFbkFbAHblXblXbnjbAHblXblXbnjbAHblXblXbkFtSLdKsbwmsXRbndbndbndbndbkFbkFbkFxKcbkFbkFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbzzbzAbzBaYGbzCbzDbnvbzEbwubzFbzGbzHbzIbzJbzKbzLbvcbzMbzNbzObsAbzPbzQbzRbzSbzTbzUbzVbzWbzXbzYbzZbAabAbbAcbAdbpYbAebAfbAgoohbAibpYmqptTlkYMbAmbBpbAobApbAqbArbCJfRsbAtbAtbAtbAubAvbAwbAxbAybAybBobAAbAAbABbAAbAAbAAbAAbACbADbAEbAFbAFbAFwnJvTNwnJbAFbAFbAFbAFbAFbHymSclWyspzbxPbwmlWykPisyQkkQbkFblXbBUblXbnjblXbBUblXbnjblXblXblXbkFcDBoKabwmpwSmlrnNNahtaaaaaaaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtbAIbAJkGebAKbALaYGbzCbAMbnvbANbAObAPbAQbARbASbATbAUbAVbvcbAWbAXbAYbsAbCjbzQbzReFjbBcbBdbBebBfbpPwLobBgbBhbBibBjbBkbpYbpYbBlbpYbpYbpYbpYcKVkozmfCdhzwfGbBqbBrbBsbBtbBufRsbBwbBxbBybAubsUbBzbkobBBbBoaaabAAbBCbBDbBEbBFbBGbAAbBHbBIbBJbAFbBKbBLbBMbBNbBObBPbBQbBRbBSbBTbHyscigXgwFTnevxlAcDBcDBcDBrKLbkFblXbDeblXbnjblXbDeblXbnjblXbDeblXbkFcDBrgnbwmbwmsEBbwmbwmahiaaaaaaaedabyabyaedabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtbBVabIbBXbBXbBXbBXbBXbBYbvbbnvbnvbnvbnvbBZbCabCbbCcbCdbCebvcbCfbCgbChbsAbCiiojbBbbClbCmbyobCnbCobCpbCqbCrbCsbCtbCubCvbCwbCxbCybCzbCAbCBbNZiwedggfdQuxPbBpbCEbCFbCGbCHbCIbAobCKbCLbCMbAtcqkcqvbkobCNbCOahtbCPbDNmzEbCQbCQxExbCSbCTbCUbBJbCVbCWbCWbCXbBNbCZbCWbDabDbbDcbDdbHybwmbwmbwmhgDbwmlWyhxnrFqlWybkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFaadjRGeuQvtljEXlWyvHfahiaaaaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDfabIbBXbDgbDgbDhbvabDibDjbDibDibDkbnvbvcbvcbvcbDlbDmbDnbvcbDobDpbDqbsAbDrbsAbDrbsAbDrbsAbDsbkhbpPwLobDtbDubDvbDwbDxbDybDybDybDybDybDzbvaqTVphJbmDbDAbBpbDBbDCbDDbDEbDFbAobDGbDHbDIbAtbsUbBzbkobDKbBoahtbAAbDLbDMbCRbDObDPbDQbDRbDSbDTbDUbDVbDWbDXbDYbDXbDXbEabEbbEcbEdbHyglfpNyveMbEfbAFtSLuvqobPlWybwmkgRdMOhTlbwmqIOdmPaaAsZuwfcbwmueVdoodtmgmpvuQbwmruibwmbwmahiaaaaaaaedahtahtabyabyaedahtaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDfahtbBXbEjbEkbElbEmbEnbEobmfbEpbmfbEqbDibErbvcbvcbvcbvcbvcbEsbEtbEubjcbEvbEwbExbEybEzbkbbEAbEBbECbzYbEDbEEbEFbEGbEHbDybEIbEJbEKbELbEMbvaxDjphJbmDbEQbBpbERbESbETbEUbEVfRsbEWbEXbEYbAubsUbBzbkobEZbCOaaabCPbFabFbbGhbCRbFdbCSbCTbwbbFfbCVbFhkmnbFibFjbFkbFlbFmbFnbGubFpbHybFrbFsbFtbFubAFlWybFxbFybFzbwmbFBlWybFCbwmjXAbFDlWylWysAKbwmheCefUbwmbwmbwmbwmbwmbwmaaaahtabyaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFEaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaabDfabIbBXbFFbvabvabvabvabvabsnbsnbvabFGbEnbFHbFIbFJbFKbFLbAWbErbFMbFNbFObFPnaSbkhbFQwtEbFRbFSbkhbFTbFUbFUbFUbFUbFUbFUbDybFVbFWbFXbDybFYbvabltlJIeRpbGabBpbBpbBpbBpbBpbBpbBpbAtbGbbGcbAubGdbBzbkobGebBoahtbAAbGfbGgbGhbCRbGibAAbGjbGkbGlbAFbGmbGnbGobGpbGqbGrbGsbGtbGubGvbGwqtAbGxbGynoMbGAbAGbIPbGBbIRbwmbwmrxQbwmbwmbwmbwmfKjbwmbwmbwmuugeMCjFwrNBaaaaaaahtaaaahtaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGDbGEbGFbGEbGGbGHbGIaaaahtahtaaaaaaaaaaaaaaaaaaaaaagSaaabvabvabvabGKaaBbGMbvabvabvabvabGNbDibErbGObGPbGQbGRbAWbGSbGTbGUbFObGVbkhbGXbuhbuhbGYbGZbuhbHabFUbHbbHcbHdbFUbFUbFUbFUbHebFUbFUbDzbvajCvbAkbAlbHpbvDbHhbHibHjbHkbHlbHmbHgbHnbHobHpbHqbHrbHsbHtbCOahtbCPbCRbHubCRbCRbHvbHwbuzbuzbuzbHybHybHybHybHybHybHyubWbHzbGubHAnsDkhkbHCbHDbHEbAFbwmbNqbwmfwrbwmsvNlWynzDbIQbIQgxKlWybwmhXtbwmcDBcDBxpDbwmahtabyabyabyabyaedabyabyaedabyahtahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHIbGDbGEbHJbHKbHLbGEbHMbHNaqGaqGaqGaaaaaaaaaaaaaaaahtagSbvabvabHPbHQbHQbHQbHRbHQbHSbvabHTbGNbDibErbHUbHVbHXbHXbHYbHZbIabIbbFObIcbIdbIebIfbIgbkbbCnbIhbIibIjbIkbIlbImbInbIobIpbIqbIrbIsbFUbDzbvabOKbItbIusYQbIvbIvbIvbIxbIvbIvbIycqwbIAbRXcqxbICbIDbBAbIEbBoaaabAAbIFbIGbIHbIIbIJbHwabIabIabIaaaaaaaaaaaaabIaaaaaaubWbIMbILbIMrPWbINcxbfBzbJVbAFrBhtSLbwmeMClQnbIQbIQuojbwmhXtpWFbIQbIQbIQbIQbIQdVJjQhbwmaaaahtahtaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybITbIUpbmbIVbIWbIXbHMbGEbGEbGEbGEbIYaaaaaaaaaaaaahtagSbIZbJabJbbJcbJdbJebJfbJgbJhbvabJibGNbJjpQwbJksENbJmbJlbGWbGWcBKbJnbFObFObFObjcbjcbjcbjcbJobkhbJpbJqbJrbJsbJrbJtbJubJvbJwbJxbJybJzbJAbvabENbJBbJCbJDcqzcqzcqzcqzbJEbJFbJGcqDbJHcqEbJJbJKbJLbJMbJNbJNbJNbHwbHwbJObHwbHwbHwbHwbJPbJPbJPbJPbJPahtabyabyabyahtxIxbJQbJRbJSkfhdAFbJTgMmbLhbAFgjvhMxbwmbwmbwmueklWybwmbwmbwmbwmbwmbwmrNBbwmbwmjDAbwmbwmaaaaedabyabyaedabyabyaedabyahtaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybJZbHMbKabKbbKcbKdbNwbKecqWizFbGEbIYaaaaaaaaaaaaahtagSbIZbHQbJbbKhbKibKjbKkbKlbKmbvabvabGNnpEbErbKnbKobKnbKpbKnbKqbKrbKsbKtbKubErbKvbKwbKxbKybGZbKzbKAbIjbKBbKCbKDqnibKEbJxbKFbJxbKGbFUbKHbvabKIbKJbKKbBobKMbBobBobKMbJNbKObKPbKObJNbJNbKQbJNbKRbJNbJNbKSbKTbKUbKVbKWcqGbKYbKZbLabLbbLcbLdbLebJPaaaaaaahtaaaaaabHybIMbLfbIMbHybCVwOSbCVbMqbAFtfxtfxrNBahtrNBlWylWylWybwmahtahtaedabyabyaedbwmrNBbwmahtahtabyahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabyabyaedabybITbHMcqHbLobOybLpbLqbLrbKfrosbHMahtaaaaaaaaaahtahtagSbvabLtbJbbLubLvbLvbLxbJbbHQbLybsnbGNnpEbErbLzbLAbKnbLAbLBbKnbLCbKsqarbLEbErbLFbLGbLHbLIbLJbnHbLKbFUbKBbLLbKDbFUbLMbLNbLObLPbLQbFUbKHbvabENbJBbCCbBobLRbLSbLTbLUbLVbLWbLXbLWbJNbLYbLZbMabMbbMcbMdbMebWMbOrbOXbMgbOXbMhbORabIbMibMjbOSbMkbJPahtabyabyabyahtbHybMlbMmbMnbHybCVbMpbCVahtbAFxlgxlgbwmbwmbwmbwmmESbwmbwmbwmbwmaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabIaaaabIbGHbMrbHMbLnbMsbMtbMubMvbMwbMwbMxbHMahtahtaaaahtahtahtalabvabHQfgSbLubMAbMBbLxbMCbMDbLybMEbGNnpEbErbMFbMGbKnbMGbMFbKnbMHbMIbGWbMJbErbjcbjcbjcbjcbMKboNbMMbFUbFUbFUbFUbFUbMNbMObMPbMQbMRbFUbKHbvabHfbMSbMTbMUbMVbmCbmCbMWbMXbMYbMZbNabNbbNcbNdbNebNfbNgbPTbNhbNibPUbUvbNjbNkbNlbWRbNnbLbbNobLebLebJPaaaaaaahtaaaaaabHybNpbNpbNpbHybCVbPlbCVahtuaOmJpmhKbwmikBwTOqnTlWydMIoEGhFpbwmahtabyaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabyaaabNrbNsbNsbHMbNtbNubLsbNvbNwbNxbNybNzbNAbNBamCamBamCamBamDahtbIZbNFbJbbNGbNHbNIbNJbJbbKmbvabvabGNnSjbErbNLbNMbKnbNNbNObKnbNPbNQbNRbErbErbNSbNTbNUbjcbjccBLbjcbjcbNVbNWbNXbFUbFUbFUbFUbFUbFUbFUbNYbNZbOabObbOcbmCbOdbmCbmCbOebOfbOgbOhbOibOjbOkbOlbOmbQJbOnbOnbOobQKbRwbQLbOpbOqbQMbWcabIbJPbJPbJPbJPbJPahtabyabyabyahtbOsbOtbOtbOtbOsbOubcOahiaaadsznquwIorNBiVJhPUlJrlWylWyndIabfrNBaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabybOvbNsbNsbOwbNwbNwbOxbMybNwbNwbNwbNwbHMbHMabIaaaahtaaaahtaaaaaabIZbHQbJbbOzbOzbOzbOzbJbbOAbvabJibGNcXWbErbOCbODbErbODbOCbErbOEbOCbAWbErbOFbCzbCzbCzbCzbCzbCzbCzbCzbCzbOHbCzhZBbCzbCzbCzbCzbCzbCzbOJbvabOKbJBbmDbOLbOLbOLbmCbOMbONbOObOPbOQbPQbPQbOTbOUbOVbOXbOXbOXbOZbPabPabPVbPdbPebPfbLabLbbPgbPhbPhbJPaaaaaaaaaaaaaaamZEmZEmZEmZEmZEahtaaaahtahtxQkmJpmhKbwmlWyxsOlWylWylWylWyabfbwmahtabyabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybGDbNsbOwbOwbOwbNwbPnbPobNwbOwbOwbOwbNsbSZabIahtahtahtahtahtahtbvabvabPpbHQbHQbHQbHQbPqbPrbvabHTbPsbPtbPubPvbPwbPxbPxbPvbPxbPybPzbvabPAbDzbPBbPBbPBbPBbPBbPBbPBbPCbPDbPEbPEbPFbPEbPEbPEbPEbPEbPEbPEbPEbPGbPHbPIbPJbPKbPLbmCbPMbJNbPNbPObPPbRxbRybPRbPSbMfbMfbMfbMfbMfbMfbMfbPVbPWbPXbPYabIbMibPZbQabQbbJPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaahxInqumhKrNBtyprEhmaWlWyjDAcDBijUrNBaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybOvbNsbQcbOwbQdbQebQfbWXbQebQdbOwbQhbNsbQiabyabyaaaaaaahtaaaahtabIbvabvabIZbIZbIZbIZbvabvabvabQjbvaqyFbvabIZbQkbvabIZbIZbvabQlbIZbvabNXbDzbPBbQmbQnbQobQpbQqbPBbPBbPBbQrbQsbTubQubQvbQwbQxbQybQzbQAbPEbQBbQCbmDbOLbOLbOLbmCbQDbQEbQFbRzbQGbRAhkabPQbSfbMfbMfbMfbMfbMfbMfbMfbPVbPWbSRbQObNnbLbbQPbPhbPhbJPaaabzyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIxQktlpmhKbwmbwmrNBbwmbwmbwmrNBbwmbwmaedabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabQQbNsbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbNsbQRabIabyaaaaaaahtaaaahtaaaaaaaaaaaabBWabIabIbvabQSbQTbPAbWkbQUrXTbOGbQVbOIbCzbCzbCzbQWpwjpwjbQXbCDbPBbQZcCPcCFcCHbRbbRcbRdbRebRfbRgbRhbRibRjbRjbRjbRkbRlbRmbPEbBmbJBbRnbRobRpbRobRobRqbRrbRsbRtbRubSSbQHbPQbUpbMfbMfbMfbMfbMfbMfbMfbPVbPWbRBbPYabIbJPbJPbJPbJPbJPabIabyaaaacOaaaaaaaaaaaaaaaaaaaaaaaaabIaaahxIilEhyhcdmahtaaaahtaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabyabIbNrbNsbNsbOwbOwbQdbOwbQfbWXbOwbQdbOwbOwbNsbNsbRCabIabIaaaahtahtahtaaaaaaaaaaaabBWouvrMVrMVvmYvayvaynLlbvabFZbvabREbFZbvabRFbNKbvabvabvabKHbDibPBbQZcCFbRacCFbRGbRHbRIbRJbRKbRLbRMbRNbRObRPbRQbRRbRSbRTbRUbRVbRWbRXbRXbRYbRZbmCbCCbSabSbbScbSdbSTbSebQIbTMbMfbMfbMfbMfbMfbMfbMfbPVbPdbShbPfbLabLbbSjbSkbSlbJPaaaabyaaaabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaahtabyabyabyaedabyabyabyaedabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaabGDbNsbNsbSmbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbOwbNsbNsbSnabIaaaahtaaaahtaaaaaaaaaaaabBWbBWcqybSobSpbSqbSqnfzbvasUPbSsbStbFZbSubDibSvbSwbSxbvabKHbUebPBbQZcCHbSycCPbSzbSAbSBbSCbSDbSEbSFbSGbSHbSHbSHbSIbSJbSKbPEbSLbSMbSMbSNbSMbSObQDbSPbJNbLWbSQbTObJNbPQbPQbUpbMfbMfbMfbMfbMfbMfbSUbUwbPWbSVbPYabIbMibSWbSXbSYbJPaaaabyabIabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaahtaaaahtaaaahtaaaahtaaacFBaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaabQQbNsbOwbOwbOwbOwbQdbQebQfbWXbQebQdbOwbSmbOwbOwbNsuZbabIabIabIaaaahtaaaaaaaaaaaabTabTbbTcbSqbTdbDibvanpEbvabTfbTgbThbFZbTibPCbTjbPCbTkbvabKHbTlbPBbTmbTnbTobTpbTqbPBbTrbTsbQrbTtbTubTvbTwbTxbTybTzbTAbTBbPEbTCbTCbTCbTDppsbTFppsbTGbJNbTHbTIbTJbTKbTLrNibTNbMfbMfbMfbMfbMfbMfbTTbUwbPWbTPbQObNnbLbbTVbSkbSkbJPaaaabyaaaabyaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaabyaedabyaaaabyabyaedabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybOvbNsbNsbOwbOwbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbOwbOwbNscqSuZbaaaabIaaaahtaaaaaaaaaaaabTWabIcqybTXbPCbSwbNKoZWlGvvGgbUarJglmsbUbbDibDibUcbUdbvabKHbBXbPBbPBbPBbPBbPBbPBbPBbPBbPBbQrbUfbUgbUhbQrbQrbQrbQrbQrbQrbQrbUibUjbUkbTCbUlbUmbUnbTQbJNbUpbUqbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbUvbUwbPWbUybWcabIbJPbJPbJPbJPbJPabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaabGIbGIbGIcqUbNsbNsbOwbOwbOwbOwbOwbQdbOwbQfbWXbOwbQdbOwbOwbOwbOwbOwbNsbNsveFahtahtahtaaaaaaaaabUDbUEbvabvabUFbDibSwbvabDibvawdxjYhdAGbvabvabvabvabvabvabvabKHbBXuwXbUGuwXbUHbUIbUJbUKbULbUMbUHbQrbUNbUObQrbUPbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbVabVbbVcbVdbVebVfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbKXbVjbPdbVkbVlbLabLbbVnbVobVobJPaaaabyaaaacOaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabVpbNsbNsbNsbNsbNsbQebOwbOwbOwbQgbQgbQgbQgbQfbWXbQgbQgbQgbQgbQgbQgbQgbQebNsbQRabIaaaabIaaaaaaaaabVrbvabvabVsbNKbDibvabvabDibvabVubVvbVwbvabVybPAtRcbvabDijXVbKHbBXuMeuMewMMbUHbVDbVEbVGcqVbVHbUHbVIbVJbVKbQrbVLbVMbVMbVMbVNbUUbVObVPbVQbVRbVSbVTbVUbUobJNbUpbMfbMfbMfbMfhjkbVZbVZbVYbVZbVZbVZbVYbTRbTSbUrbWbbWcabIbMibWebWfbWgbJPaaaabyabIabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbUCbWhbQgbQgbQgbQgbQgbOwbQdbQebQfbWXbQebWibOwbOwbOwbOwbQgbOwbNsbNsbSZaaaabIaaaaaaaaacqXabIbvabVCbvabDibvabWjbSwbvamzUbvabvabvaohRbSwbVzbvabDibvaiygbBXlTChzcfzubUHbWnbWobWpbWqbWrbUHbWsbWtbWubQrbWvbWwbWxbWybWzbUUbWAbWBbWCbWDbWEbWFbWGbWHbJNbWIbWJbMfbMfbWMpmBbOXbOXbUsbOXbWObMfbWPbUtbUubWQbUzbWRbNnbLbbWTbVobVobJPaaaabyaaabzyaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbOwbOwbQgbOwbOwbOwbOwbOwbOwbWVbWVbWWcekbWVbWVbOwbOwbOwbOwbQgbOwbUCbNsbSZabIabIabIahtahtcqXaaabvacqybvabWZbDibWZbSwbvarzpnQciEQbvahVxbSwftpbvawIvbvalIrqXqbXdbXewiBbUHbXfbXgbXhbXibXjbUHbXkbXkbXkbXkbXlbXmbXnbXobVNbUUmCemCemCebWDbXkbXpbXqbXkbJNbXrbXsbXtbXubXvbXwbUAbXxbVgkasbXAbXBbXybXCbXDbXEbXFbXGabIbJPbJPbJPbJPbJPabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacfNbZYcrbbZYbZYbZYcfNcfNcfNbOwbQgbOwbOwbOwbOwbWVbWVbWVbXJbXIcdxbXJbWVbWVbWVbOwbOwbQgbOwbOwbNscrebGIaaaaaaaaaaaacqXaaaahtaaabvabDibvabXSbSwbSwkpKbXUbXVtvPoWwnNJlQXnNJqOHqYibQYbBXcifkrUreVbUHbUHbXYbXZbYaqGZbYbbYcbYdbYebTEbYfbYgbYhbYibYfbUTbYjbYkbYlbTEbYmbYnbYobTEbJNbKQbJNbYpbLWbVhdJkbYpbVibVmbNmbQObNmbQObYsbYtbYubYvbYwahtaaaahtahtaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYbZYcrgceCcrhbZYcfNcfNbOwbOwbQgbOwbOwbOwbUCbWVcrjbXJbXJbZndpcbXJbXJcrkbWVbWVbOwbQgbQgcrlbNsbNsbNsbSZabIahtahtcrmbvabIZbvabvabDibvabvabvabYFbDibDibDibDibDibDibDibDifpTbBXbXkbXkbXkbXkbXkbXkbYIbYJbYKbYLbYQbYNbYObYPbYQbYRbYSbYTbYUbYVbYWbYXbYQwjmbYObYYbYZbZahXKbZcfrjudlcuieAZcuipoPcuieAZcuipoPcuipoPcuipoPbVWbZfbZgbZhbZibZjbYwbYwbYwbYwaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYcrtcrucrvcrvbZYcfNbOwbOwbOwbQgbOwbOwbWVbWVbWVbXJbZlbZmbZndpcbZlbZmbXJcrxbWVbOwbQgbQgbXLbXMbXNrzFahiahicdmcdmcrycrzcrAcrBcrCbZrbvabNXbOBbSwbZtbZtbNKwRkbNSnWPbvabOBfpTbBXmbebZxvRmkyvsKabTEjrGbZybZzbZAbZDbZFbZAbZFbZAbZAbZAbZBbZEbZAoWubZAbZAbZFbZAbZAbZGbZFbZIueXpYhbZKbJPbZLbMibZLbJPbZLbMibZLbJPbZMbMibZNbYwbZObZPbZQbZRbZSbZTbZUigBbYwbYwnbuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYcrDcrEcrFcrGbZYbZYbZYbOwbOwbQgbOwbQebWVcdCbYzbXJbYAbYBbZndpcbYAbYBbXJcrHbWVbOwbQgbQgbNsbNsbNsbNsbNsbSZabIabIabIbvabIZbvabvacaabvabvabvabvabvabZsbvabvabvabvabvabSwfpTbBXsczeQNbpLlWJiFIcaecafbZynAYcawcajcakxhIrTdcancancancaqcarcamcamcamcamcbmcamcamcaxcalhXKcCUpYhabIbJPcazcaAcaBbJPcaCcaDcaEbJPcaFcaGcaHbYwcaIcaJcaKcaLcaMcaNcaOcaPcaQcaRhblaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabZYbZYbZYcehnkubZYbZYgiIpkMbQgbQgbQgbSmbWVbWVcaTbWVcrKbZlcrLbZndpccrMbZmcrNbWVbWVbUCbQgbOwbOwbOwbOwbOwbNscrOaaaaaaaaaaaaaaaaaabvacaabvacabaaCbvaoAWkRqbMEbvaklogjpbvabDiwNquUQkSFtcYfQfiAxoUaetauuncbccbdcbecbfcbgcbhwDlcbicbjqpScbkmgzccWvlilfxmgzmgzlrMcbncbocbpcbqbZJpYhabIbJPcbscbtcbsbJPcbucbvcbubJPcbwcbxcbycBTcbAcbBcbCcbDcbEbZTcbFfRrbYwbYwnbuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaabZYcBMbZYjsDxSXcrTceEcrUbZYpkMbZYbOwbUCbOwbOwbWVbXJcbKbWVcdrbYAcaVbZndpccaWbYBcrXcrYbWVbOwbQgbQebOwbOwbOwbOwbNsarFbvabIZbIZbIZbvaaaabvabXabvajPfkRqgkXbDiuMtbDiolcbSvlHXbvabDibvabBXkDJcamcbWbZAvjdmmvcbYcbZnRMccaccbcamcbhvxrcccaacaaeaacaacbXkckJbXkaacaacaaeaaccccccicbdwbFpYhabIbJPcbsccmcbsbJPcbuccncbubJPcbyccocbybYwccpccqccrbYwthAbYwbYwqVkbYwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYbZYcsdcsecsdcsicsfcsgcshlAfcrvbZYccubOwbOwbUCbWVbYzbWVbWVcdwcbPcbMbZndpccbPcbMcdxcskbWVbQgbQgbQgbQgbQgbQgbUCbNsarFbvacaZcbacbbbvabIZbvabRDbvaoFIkRqbvapYCbMEksfbvanewnDobvabDigMOfdSoYjcamcbdcamoAwcaecdcbZycamcamcahcamcbhirMaaccbXccXccYcbXcdaceypCotlVoHacAQcbXaackTjcamcCVpYhabIbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbYwcdgcdhcdicdjcdkcdlgmZcdmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYcsncsdcsocspowSpFecsqcsrcsscsscfkcbGcbGcbGcbGcdqcdrcdsbWVcsvcduccHcbNcbOcduccHcgnbWVbWVcbRcbRbWVbWVbOwbQgbOwbNsarFbIZcbScbTbDibNKcsybSqbWlbvabvabvabvabvafefbvabvabvabvabvabIZbBXbBXuMosjCcdIouscdKbTEgnqcdLcdMqtOcdOcamcbhirMcdRwcsccXcdTwcswcscdWwcswcsoHacAQwcscdRkTjcamcebpYhaaaabIaaaaaaaaaaaaahtaaaahtaaaaaaahtaaabYwcbzbYwcecbYwcedoGwbYwcdmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacBMceFcsBcsCcspcsEhYecsEcsFcsGcsGtancefcsMceecefcegcsNcsOceicsNcsQcsQccEccFcePcePcsScbRccJbXJbXJcsTcsUccMbQgbOwbNsarFbIZccNbDiccObvabQlbvacdEbvarsestQpVDmHyfmhbDirhrdyesijbvaaaaaaabBXbXkbXkcribXkbXkbXkbXkcerbXqbXkioFcamcbhqFuaafiyJceuccYwcswcswcswcswcseWicLwcfPaagqhEcamepVpYhaaaabIaaaaaaaaaaaaahtaaaahtaaaaaaahtaaaahtaaaaaaceAbYwbYwbYwbYwbYwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYcsYcsdcdpcsprrUkwmctactbctactacteceBceBceBceBchJctgceHbWVbWVceKceLcdwcdxcthceKbWVbWVcdwcdAcdBcenbWVcdDbQgbQebNsarFbIZbIZozObIZbvacqXbvabIZbvauInboqkDYwzbbNUohRdymnVUbDibvaaaaaaaaaabXkmcicbXccRbXkceTceUceVxmEbXkceXmwGhjDcetbXkcfacbXcbXcfdwcscdWwcsdEycbXcbXcffbXqlozhaAqLIpYhaaaahtaaaaaaaaaaaafonfonfonaaaaaaahtaaaahtaaaaaaaaaaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYbZYcsdkDfcsdctrctrctrcttctugKzbZYcfNcfNcfNcfNcfmctxcflcfmcfmcfmcfmcejcekcfmcfmcfmcfmcelctxcfmbWVbWVceobQgbOwbNscrOaaacjmcwAcjmahtxNxrnErnEuknmIaboqfmhnYbnYbnYbbDibDiydfbvaaaaaaaaaabXkcbXcbXcbXbXkcfreVycfsymbbXkaahnAsaaiulYbXkaaccfuaacbXkeyjeyjeyjbXkaaccfuaacbXqfrjaajaajhUwuaOpBJuaOpBJahtahtfonshHfonaaafonfonfonfonmauaaaaaagYofonmaufonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaabZYcBMbZYdpbcdocdocdoctJbZYbZYbZYcfNcfNcfNcfNcfmctKctLceJcfFcfGctMceMceNctNcfGctOcePceMctPcfmctQbWVbOwbQgbUCbNscrOaaacjmcwAcjmahtctSaaaaaabIZqdjboqrSHgVcdSrohRycxqBvihjbIZaaaaaaaaabXkceqcbVccQbXkcfObXkdWpbXksvAcfScfTcfUaaksWWtwvtlNvlCtlNeAHkTRqkMtlNloLjBncfXcfYaalupceiVnquwIowIowIoswgaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabZYbZYctXkfMlzJbZYbZYcfNcfNcfNcfNcfNcfNcfmciDcggcfncfncfncfncfocfncfncfncfncfncfpcdxcfHcfIcfJbQgcfLbQgbNscrOaaacjmcwAxghkSbcFBaaaaaabvasXicgpbSouiPfmhreHlBPbDissxbvaaaaaaaaaabXkmhlcbVccQbXkcgrbXkcgsoremjKfFvwcstIScgucgvhoSncmiejncmlnrmEumiwncmcgxoxwvVOxNyeyjwIoupcnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVcfmcfDcfEbWVcgGcgGbWVcgGcgGbWVcgGcgGbWVcfEcdxcfmcfmcfmcfmcfmcfmcfmcrOaaacjmcwAxghkSbaaaaaaaaabvabvadNrgHZxCVdJmxCVfvbpBDbvabvaeNFeNFeNFbXkceqceqccQbXkcgPbXkcgQqWGmjKfmLgggiCscgUlXbsWjcCIqeYlUOqeYwMXqeYpuwqeYmeFiopsmvuIBhyhdszgBbgBbgBbgBbpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNbWVcukcgbculcumcfCbWVcdrcdCcdCbXJcfmchfcfEcgGchicidcuncgkcuocupciVcgmcgGcfEcgncfmcgLcgMcgNcfmcgOcfmcrOaaacjmvcocjmahtaaaaaangeahtbBXbBXbBXehMbDixaObBXbBXbBXahtaaaaaaaaabXkceqceqccQbXkcgPbXkchvbXkmjKgXZqbprPgaamcgvdnSaanfyOmpdfBZdFJprQfyFfyOaaokWQxNyeyjupceiVnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNbWVcuscutchBcgdcuucgfcuvcuwcuxcuychFcuzcfpcgGcidcuAcuBcuAciVcuEcgHcuEcgGchnchochpchqchrchschtchucfmcfNaaacjmcwAcjmahtaaaaaaadRahtbBXbDiwfObDiwfOswwbDibDibBXahtaaaaaaaaabXkbXkbXkbXkbXkcgPtuemKkpaUaapkmdqbprPgaaquaPhSCaarfyOhKpfBZwYKprQcZtfyOaaooXqhGBeyjvoheiVnsJnsJnsJnsJpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVcuGcuHcuIcuJchUbWVbXJcbKcbKcuKcfmciDcfEbWVcuMcibcicciScgIcgKcgHcuObWVcfEcuPcuQchKchLchMcfmchNcfmcfNcfNcjmcwAcjmmauaaaaaaadRahtbBXbDibDidWkweLbDiwfOfLGbBXahtaaaaaaaaaaaaaaaaaaaaaahtcgPpjHcdmdSpaaclXJgEocBRaaccgvjTUaaofyOhKpfBZdFJprQcZtfyOaasqpdhStuIBpBJuaOgBbgBbgBbgBbhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVbWVchbchcchdcuRcuScePctgcePcePcuUcuVcuWcuXchjcgHcgHchkchlcgJcgHcgHcuYcdwcdxcfmcfmcfmcfmcfmcfmcfmcfNcfNcjmcwAxghfonaaaaaaadRahtbBXbBXbBXbBXbBXbBXbBXbBXbBXahtaaaaaaaaaaaaaaaaaaaaaahtcgPpjHcdmcdmaaclXJdMGiCsjzEukpfZKmeFqeYcitcgYuzhdgjfjDqeYcCItkLciveyjwIovohnsJnsJnsJnsJpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVchCchDcuZchEciybWVcrjciAcdCbXJcfmciDcfEbWVcvbcgHchGcgHcibcgHcicciEbWVcfEcvccfmciocgMcipcfmciqcfmcfNcfNcjmcwAxghfonaaaaaaaaaaaaahtahtahtahtahtahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaahtcigpjHaaaaaabXkbXkbXkbXkbXkcgVpgHoKvoKvqeYciInUQpsdqeYcBScBStODciveyjvoheiVnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIabIabIabIabIaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVchVchWchXchYchZbWVciNcvdciOcvecfmcfDcfEcgGciTciSciTcgHcvgabZciVciWcgGchnchociFchqchrchschtchucfmcfNcfNcfNxYVcjmahtaaaaaaaaaaaaadRngengeadRadReNFeNFngeeNFaaaaaaaaaaaaaaaaaaaaaaaaabIcgProcahtahtshHaaaaaaaaabXkcgvpgHwbBwbBpuwtdLfymfxCiTFcjtiLhtODvswbXkcdmcdmdszhyhdszhyhcdmaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIahiahiahiahiahiabIaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVcfmchfcfEcgGcvhcidcjocvicidcvjcjqcjrcgGcfEcvkcuQciXchLciYcfmciZcfmcfNcfNcfNbNEcjmahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIcigmVMaaaaaashHahtahtahtbXkcgvuRkxzRwfPvBEdHrhondZjslJkaRliRikOqRlbXkaaaaaaahtaaaahtaaaahtaaaaaafonfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjvcjvcjwcjxcjxcjxcjwcjvcjvcjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVciJciKbWVbWVcizcizcizcizcizcizbWVbXJcjHcfDcfEbWVcgGcgGbWVcgGcgGbWVcgGcgGbWVcfEcdxcfmcfmcfmcfmcfmcfmcfmcfNcfNcfNxYVcjmahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaabXkgQfciGhQChQChQChQChQChQChQChQChQChQCoKJbXkaaaaaaahtaaaahtaaaahtaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjvcjVcjxcjxcjxcjxcjvcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaafITfITfITfITcjfcjgcvqcgfcvrcvsckbckbckccvtcgfckdchFcvucfocfncfncfncvwcfncfncfncfncvwcfncvykXxcfmcfNcfNcfNcfNcfNcfNcfNcfNcfNqWocjmcjmfonaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaashHahtahtahtbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkahtfonfonfonfonfonfonfonahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjxcktcjxcjxcjxcjxcjxcjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacjBcfHcfIcjCcfJbXJcjkcePcvAcePcvBckuckucvCcePcjlcePcuQcvEcvFciRcvFcvHcvIciRciRcvJckEcvKcePcfGcsSjSacwAxSdcwAcwAcwAcwAiXxxYVqWolxIeNccjmfonaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaaaaaahtaaaahtaaaahtaaaahtaaaahtaaaahtaaaahtahtahtfonshHshHshHshHshHfonaaaahtshHshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjucjucjxcjxcjxckLcjxcktcjxcjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaafITfITfITfITcjZckabWVbWVcvRcvScvTcvTcvVcrkbWVbWVcvXcvYcvZcwacwacwcckQcwacwecweckTcwgcwecwecfmcfmcfNcfNcfNcfNcfNcjmcjmcjmcjmxVtpiacjmahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaashHahtahtahtfonfonfonfonfonfonfonfonfonfonfonfonfonfonahtahtfonfonfonfonfonfonfonaaaahtshHfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjxcjxcjxcjxcjxcjxcjxcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVbWVbWVbWVcwjbXJcdwbZocwkceQbXJcwlbWVckeckfcwmcwncwocwpclfcjOcwecjPxhjcjRcwrcwecwecwecwecfNcfNcfNcfNcfNcfNahtcjmcjmcjmcjmahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaafonshHshHshHshHshHshHshHshHshHshHshHshHfonahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKckKckKcjucjucjuckKcjucjxcjxcljcjxcjxcjucjuckKcjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbWVcwwbXJcjjcwxcwyciAbXJcwzbWVckyckfckjckgckhckicwAckkcwecklxhjjFOclmfWvfWvckpcwecfNcfNcfNcfNcfNcfNaaaahtahtahtahtnKoaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaashHahtahtahtfonfonfonfonfonfonfonfonfonfonfonfonfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKckKcjucjucjucjucjucjucjucjxcjxcjxcjuckKcjuckKcjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNcfNcfNbWVbWVcrjbXJcwEcwFbXJcwGbWVbWVcldclecwHckzckAckBcwAckCcweckDcwKckFckGqOEqOEckIcwecfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaafonaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjuckKckKckKckKcjucjucjuckKcjuckKckKcjucjuckKckKcjuckKckKcjuckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacwMfITcwObXJckvckwbXJcwOfITcwRcCRcjmckOckPckPckPcwSckRcweckSodMjFOcwUckVmKcckXcwecfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKckKcjuckKckKcjucjuckKckKckKckKckKcjucjuckKckKckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabITfITfITfITckMckNfITfITfITcwRaaacjmcjmcjmcjmcjmcjmcjmcweclgxhjcxejXhqOEqOEckIcwecfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaamauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjuckKckKcjuckKckKcjucjucjuckKckKckKckKcjuckKckKcjucjuckKckKckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxgcxhfITclbclbfITcxkcxgaaaaaaaaacfNcfNcfNcaScfNcfNcweclkcxnjFOckUclnclnclncwecfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKckKckKcjuckKckKcjucjuckKckKckKckKckKcjuckKckKcjucjucjuckKckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxgaaaaaacxgaaaaaaaaaaaaaaaaaacfNcfNcaScaScaScwecwexhjjFOcwecwecwecwecwecfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKcjuckKcjuckKckKckKckKcjucjuckKckKckKcjuckKckKcjuclsckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcaScfNcaScfNcwelqycxzcwecfNcaScfNcaScfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaaahtaaaaaaaaaaaaabNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKcjucjucjucjuckKckKcjuckKcjucjucjucjuckKckKckKckKckKckKcjucjuckKckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcaSaaaahtaaacxBcxCcxDcxEaaaahtcfNcaScfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaamauaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjuckKckKcjuckKcjucjucjucjuckKckKckKckKcjuckKcjuckKckKckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaaacxJcxKcxLcxMaaaahtaaaahtaaacfNcfNcfNaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKckKckKckKckKcjuckKckKckKckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaaacxJcxXcxYcxMaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPtfwaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjuckKckKcjucjucjuckKckKckKckKckKckKcjucjuckKckKckKcjuckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaahtaaaahtaaacxJcylcymcxMaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPpjHaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKckKcjuckKckKckKckKckKcjuclvckKckKcjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaahtaaaahtaaacyycyzcyAcyBaaaahtaaaahtaaaaaaaaaaaaaaaaaacfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigpjHaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjuckKckKckKckKckKcjuckKcjucjucjuckKckKckKckKcjucjucjuckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcfNaaaaaacjpcjpcjpcjpcjpjgrvOwcjpcjpcjpcjpcjpahtahtahtahtahtcyLcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPuHGclziBJouvrnrabIabIaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjucjucjuckKckKckKcjucjuckKcjucjucjucjucjucjuckKckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcyMahtahtcjpcjpcCWckWcyPcyQcjQijFcyRcySckocyTcjpcjpaaaahtaaaaaacfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPclwclAclBclwclEclwclwaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKckKcjucjuckKckKckKckKckKcjuckKckKckKcjucjuckKckKckKcjucjucjuckKcjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNaaaaaacyUckHckHckHckHckHcjQpXcickickickickxjccyUaaaahtaaacfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPclwclDhQzclwxnmclNclwaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjuckKckKclFcjucjucjuckKckKckKckKckKckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcyMahtahtcjpcyYcyZckHcyZckHcjQckmckHcyZckHcyZxjacjpahtahtahtcyMcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclCclwclJclBclwclMqxqclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjucjuckKckKckKckKcjucjucjuckKckKcjuckKckKckKcjuckKckKcjucjuckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNaaaaaaaaacyUckHckHckHckHckHcjQckmckHckHckHckHckHcyUaaaaaacfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclGclHclQclRclSclTclUclVclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjuckKcjucjucjuckKckKckKcjucjuclvcjuckKckKcjucjuckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcyMahtahtahtahtcjpckHczlczlczlckHcjQckmckHczoclpczpczqcjpaaaaaacfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIclGclPclXclYclZcmacmbcmcclwabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjuckKckKcjuckKckKckKckKclvcjuckKckKcjucjuckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacjpckHczrczrcztckHcjQckmckHczuczvckHczwcjpahtahtcyMcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclGkFmrsZcmdtlwclLmxymDWclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKclvckKckKckKcjuckKcjucjuckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacyUckHczrczBczCckHcjQckmckHczDczvckHckHcyUaaaahtcfNcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclwclwcmhcmeclwclwclwclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjuckKckKckKcjuckKckKckKcjuckKckKcjucjuckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacjpczHczIczIczIckHczLczMckHczNczOczPczQcjpahtahtahtcyMcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwcmfcmguznnMGcmjcmkcmlclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjuckKcjucjuckKcjuckKckKckKckKckKcjuckKckKckKckKckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNaaaahtaaacyUckHckHczVczWczWczYczZcAacAaclickHckHcyUaaaaaaaaacfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwcmmcmncmocmpcmqcmrcmsclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKckKckKckKckKckKckKckKckKckKcjucjucjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcyMahtahtahtcjpcyRckHckHcAgcAgcAicAjcAgcAgckHckHcyRcjpahtahtahtcyMcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRcmtclwcmucmvclGcmwclGcmxcmyclwcmzadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKckKckKckKckKckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNaaaaaaaaacyUcyUcjpcArcAscAtcAucAvcAtcAscAycjpcyUcyUaaaaaacfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclGclGclGcmFclGclGclGclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjuckKcjucjuckKcjuckKckKcjuckKcjuckKcjucjucjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcfNcfNaaaahtaaacjpcABckHckHcACcADckHckHcABcjpaaaahtaaacfNcfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmBcmGclGopzclGcmHcmBcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacjucjucjucjuckKcjuckKckKcjuckKcjucjucjuckKcjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcfNcfNaaaahtaaacyUcyUcAHczWcAJcAKcAacAMcyUcyUaaaahtaaacfNcfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBxFlgpIgpIqYScmKcmKcmKcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKckKckKckKcjuckKcjucjuckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcyMahtahtahtahtcjpcjpcAScATcAUcAVcjpcjpahtahtahtaaaaaaaaacfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmLcmMcmNcmKcmOcmPcmQcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuclvckKckKcjuckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcfNcfNaaaaaaaaaaaacyUcyUcyUcyUcyUcyUahtaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIcmBcmRcmKcmKcmKcmKcmKcmUcmBabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKclvcjucjucjuckKcjuckKcjucjuckKcjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNaaaaaaaaaaaaaaaahtaaaaaaaaaaaaahtaaaaaacyMcfNaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmVcmWcmKcmXcmKcmYcmZcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaahtaaacfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnacnbcmKcnccmKcndcnecmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjxcjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaaacfNcfNcyMcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmRcmKcmKcmKcmKcmKcmUcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjxcnpcjxcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyMcfNcfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnjcnkcnlcmKcnmcnncnocmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjucjucnqcjucjucjuckKcjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIcmBcmKcmKcmKcmKcmKcmKcmKcmBabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnrcnscntcnucnvcnwcnxcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmBcmBcmBcmBcmBcmBcmBcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacnyaaaaaaaaaabIaaaaaaaaacnzaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRadRadRadRadRadRadRadRadRadRadRadRadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC "} From f5ecdad8e95358a5b05c960b4982b2123e4201f0 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 10:58:46 -0700 Subject: [PATCH 09/52] Update eldritch_antag.dm --- code/modules/antagonists/eldritch_cult/eldritch_antag.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/eldritch_cult/eldritch_antag.dm b/code/modules/antagonists/eldritch_cult/eldritch_antag.dm index 25602c8588..d54f008108 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_antag.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_antag.dm @@ -98,7 +98,7 @@ var/pck = pick("assasinate","protect") switch(pck) if("assasinate") - var/datum/objective/assassinate/A = new + var/datum/objective/assassinate/once/A = new A.owner = owner var/list/owners = A.get_owners() A.find_target(owners,protection) From 646db6ef325eaf2c3efa24513c6def842d9bf1cf Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 11:03:51 -0700 Subject: [PATCH 10/52] Update rust_lore.dm --- code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm b/code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm index f5c54dd7bf..9d65396c63 100644 --- a/code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm +++ b/code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm @@ -69,7 +69,7 @@ var/mob/living/living_user = user living_user.adjustBruteLoss(-3, FALSE) living_user.adjustFireLoss(-3, FALSE) - living_user.adjustToxLoss(-3, FALSE) + living_user.adjustToxLoss(-3, FALSE, TRUE) living_user.adjustOxyLoss(-1, FALSE) living_user.adjustStaminaLoss(-6) From 017db3de90b6935888d1a49e97496affba862cc6 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 11:05:18 -0700 Subject: [PATCH 11/52] Update topic.dm --- code/modules/admin/view_variables/topic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/view_variables/topic.dm b/code/modules/admin/view_variables/topic.dm index af412a6caa..d7e893ec03 100644 --- a/code/modules/admin/view_variables/topic.dm +++ b/code/modules/admin/view_variables/topic.dm @@ -98,7 +98,7 @@ L.adjustFireLoss(amount) newamt = L.getFireLoss() if("toxin") - L.adjustToxLoss(amount, toxins_type = TOX_OMNI) + L.adjustToxLoss(amount, toxins_type = TOX_OMNI, forced = TRUE) newamt = L.getToxLoss() if("oxygen") L.adjustOxyLoss(amount) From 92b2177316e54b960494546af0d7e08d4a68cc7f Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 11:35:09 -0700 Subject: [PATCH 12/52] Update _job.dm --- code/modules/jobs/job_types/_job.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/jobs/job_types/_job.dm b/code/modules/jobs/job_types/_job.dm index 9b816a9f90..64ab4791d3 100644 --- a/code/modules/jobs/job_types/_job.dm +++ b/code/modules/jobs/job_types/_job.dm @@ -133,12 +133,12 @@ return TRUE /datum/job/proc/GetAntagRep() - . = CONFIG_GET(keyed_list/antag_rep)[lowertext(title)] + . = CONFIG_GET(keyed_list/antag_rep)[ckey(title)] if(. == null) return antag_rep /datum/job/proc/GetThreat() - . = CONFIG_GET(keyed_list/job_threat)[lowertext(title)] + . = CONFIG_GET(keyed_list/job_threat)[ckey(title)] if(. == null) return threat From 6d89c9f7b60fac601622b1bac27f0719106c4223 Mon Sep 17 00:00:00 2001 From: Blue Wildrose Date: Sat, 26 Dec 2020 16:39:20 -0700 Subject: [PATCH 13/52] I learned about mapmerger --- _maps/map_files/PubbyStation/PubbyStation.dmm | 134919 ++++++++++++++- 1 file changed, 127931 insertions(+), 6988 deletions(-) diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 19d17bd138..0aaeba8e39 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -1,6991 +1,127934 @@ -"aaa" = (/turf/open/space/basic,/area/space) -"aab" = (/obj/machinery/holopad,/obj/effect/landmark/start/cyborg,/mob/living/simple_animal/bot/secbot/pingsky,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aac" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aad" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"aae" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aaf" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aag" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering) -"aah" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aai" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aaj" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aak" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/spawner/structure/window/plasma/reinforced,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aal" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/open/floor/plating,/area/engine/engineering) -"aam" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aan" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aao" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aap" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aaq" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/engineering) -"aar" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/item/tank/internals/plasma,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aas" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/obj/machinery/door/poddoor/shutters/radiation/preopen{id = "engsm"; name = "Radiation Chamber Shutters"},/turf/open/floor/plating,/area/engine/supermatter) -"aat" = (/obj/structure/closet/wardrobe/green,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/poster/official/fashion{pixel_y = -32},/obj/structure/sign/poster/official/fashion{pixel_y = -32},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aau" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/sign/poster/official/hydro_ad{pixel_y = 32},/turf/open/floor/plasteel,/area/hydroponics) -"aav" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aaw" = (/obj/structure/sign/poster/official/hydro_ad,/turf/closed/wall,/area/hydroponics) -"aax" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/poster/official/medical_green_cross{pixel_x = 32},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"aay" = (/obj/structure/sign/poster/official/medical_green_cross,/turf/closed/wall,/area/medical/medbay/central) -"aaz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/official/medical_green_cross{pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"aaA" = (/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) -"aaB" = (/obj/structure/closet/masks,/obj/item/reagent_containers/food/snacks/deadmouse,/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/engine) -"aaC" = (/obj/structure/sign/poster/contraband/scum{pixel_y = 32},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"aaD" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/clothing/mask/balaclava,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaE" = (/obj/machinery/light/small,/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaF" = (/turf/closed/wall,/area/crew_quarters/fitness/pool) -"aaG" = (/obj/structure/closet,/obj/item/weldingtool,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaH" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaI" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"aaJ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) -"aaK" = (/obj/machinery/light{dir = 1; light_color = "#706891"},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"aaL" = (/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) -"aaM" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 8},/area/crew_quarters/fitness/pool) -"aaN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaO" = (/turf/open/pool,/area/crew_quarters/fitness/pool) -"aaP" = (/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) -"aaQ" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aaR" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Pool"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/poster/official/walk{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/pool) -"aaW" = (/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"aaX" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"aaY" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/pool) -"aaZ" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"aba" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"abb" = (/obj/machinery/camera{c_tag = "Fitness Room"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"abc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding/corner,/area/crew_quarters/fitness/pool) -"abd" = (/obj/structure/closet/lasertag/red,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abe" = (/obj/machinery/vending/kink,/obj/machinery/status_display/evac{pixel_x = 32; pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abf" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/department/science) -"abg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/lasertag/blue,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abj" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/yellowsiding,/area/crew_quarters/fitness/pool) -"abk" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/bed,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"abl" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"abm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) -"abn" = (/obj/machinery/pool/filter{pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) -"abo" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/pool) -"abp" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"abq" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding{dir = 4},/area/crew_quarters/fitness/pool) -"abr" = (/obj/machinery/pool/drain,/turf/open/pool,/area/crew_quarters/fitness/pool) -"abs" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness/pool) -"abt" = (/obj/structure/pool/Rboard,/turf/open/floor/plasteel/yellowsiding{dir = 8},/area/crew_quarters/fitness/pool) -"abu" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"abv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"abw" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/table/glass,/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel,/area/crew_quarters/fitness/pool) -"abx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/athletic_mixed,/obj/item/toy/poolnoodle/blue,/obj/item/toy/poolnoodle/red,/obj/item/toy/poolnoodle/yellow,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"aby" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space/nearstation) -"abz" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"abA" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellowsiding/corner{dir = 4},/area/crew_quarters/fitness/pool) -"abB" = (/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"abC" = (/obj/machinery/light,/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness/pool) -"abD" = (/turf/open/floor/plasteel/yellowsiding/corner{dir = 1},/area/crew_quarters/fitness/pool) -"abE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/pool"; name = "Pool APC"; pixel_y = -24},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/pool) -"abF" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/crew_quarters/fitness/pool) -"abG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"abH" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/door/airlock/public/glass{name = "Pool"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"abI" = (/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"abJ" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "MiniSat External Fore"; dir = 1; network = list("minisat")},/turf/open/space,/area/space/nearstation) -"abK" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"abL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abN" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space) -"abO" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"abP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abS" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"abT" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Pool"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/fitness/pool) -"abU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/xmastree,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"abV" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"abW" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"abX" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"abY" = (/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"abZ" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/effect/landmark/xmastree,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"acc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acd" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"ace" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acf" = (/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber North"; dir = 1; network = list("minisat")},/obj/machinery/light,/obj/machinery/flasher{id = "AI"; pixel_y = -24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"ach" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"aci" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/ai_monitored/turret_protected/ai) -"acj" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/landmark/start/ai/secondary,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = -27},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"ack" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber Center"; network = list("minisat")},/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/status_display/ai{pixel_y = 32},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acl" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/ai"; dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/effect/landmark/start/ai/secondary,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acm" = (/obj/machinery/camera/motion{c_tag = "MiniSat External Port"; dir = 8; network = list("minisat")},/turf/open/space,/area/space/nearstation) -"acn" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber West"; dir = 4; network = list("minisat")},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"aco" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acp" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acq" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai"; name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acr" = (/obj/machinery/ai_slipper{uses = 8},/obj/machinery/power/terminal{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acs" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "AI Satellite turret control"; pixel_x = -5; pixel_y = -24},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"act" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acu" = (/obj/machinery/porta_turret/ai{dir = 4},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber East"; dir = 8; network = list("minisat")},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"acv" = (/obj/machinery/camera/motion{c_tag = "MiniSat External Starboard"; dir = 4; network = list("minisat")},/turf/open/space,/area/space/nearstation) -"acw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acy" = (/obj/effect/landmark/start/ai,/obj/item/radio/intercom{freerange = 1; name = "Common Channel"; pixel_x = -27; pixel_y = -9},/obj/item/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_y = -31},/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -9},/obj/machinery/newscaster/security_unit{pixel_x = -28; pixel_y = -28},/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_x = 28; pixel_y = -28},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acz" = (/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acA" = (/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acB" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acC" = (/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acD" = (/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber South"; network = list("minisat")},/obj/machinery/light{dir = 1},/obj/machinery/flasher{id = "AI"; pixel_y = 20},/obj/machinery/status_display/ai{pixel_y = 37},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acE" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"acF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/AIsatextAS) -"acG" = (/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acH" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acI" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/ai_monitored/turret_protected/ai) -"acJ" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acL" = (/obj/structure/cable/yellow{icon_state = "2-8"},/obj/machinery/ai_slipper{uses = 8},/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acM" = (/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/ai_monitored/turret_protected/ai) -"acN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space,/area/space/nearstation) -"acO" = (/obj/structure/grille/broken,/turf/open/space,/area/space/nearstation) -"acP" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"acQ" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"acR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"acS" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"acT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"acU" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"acV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"acW" = (/obj/machinery/computer/station_alert,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"acX" = (/obj/machinery/computer/monitor,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"acY" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"acZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"ada" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"adb" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/door/airlock/command/glass{name = "AI Core"; req_access_txt = "65"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"adc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"add" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"ade" = (/obj/structure/table/glass,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass{amount = 20; pixel_x = 3; pixel_y = -4},/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/mmi,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adf" = (/obj/machinery/light/small{dir = 1},/obj/machinery/computer/rdconsole/robotics,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adg" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adi" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adk" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/aisat_interior"; dir = 8; name = "MiniSat Antechamber APC"; pixel_x = -24},/obj/machinery/recharger,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adl" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adm" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adn" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"ado" = (/obj/structure/table,/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/item/paper_bin,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adq" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"ads" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adt" = (/obj/machinery/camera{c_tag = "MiniSat Maintenance Port Fore"; dir = 1; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adv" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adx" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"ady" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adz" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -29},/obj/machinery/camera/motion{c_tag = "MiniSat AI Chamber Observation"; dir = 1; network = list("minisat")},/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/ai_monitored/turret_protected/aisat_interior) -"adB" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adD" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Waste Out"},/obj/machinery/camera{c_tag = "MiniSat Maintenance Starboard Fore"; dir = 1; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"adG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adH" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) -"adM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Observation"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"adN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"adO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"adP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"adQ" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"adR" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"adS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"adU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"adV" = (/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) -"adW" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Port Fore"; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) -"adX" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) -"adY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"adZ" = (/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAS) -"aea" = (/obj/structure/lattice,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Starboard Fore"; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAS) -"aeb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"aec" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"aed" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/space/nearstation) -"aee" = (/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"aef" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"aeg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/porta_turret/ai{installation = /obj/item/gun/energy/e_gun},/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/aisat_interior) -"aeh" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"aei" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aej" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/porta_turret/ai{installation = /obj/item/gun/energy/e_gun},/turf/open/floor/plating/airless,/area/ai_monitored/turret_protected/aisat_interior) -"aek" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"ael" = (/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"aem" = (/turf/closed/wall/r_wall,/area/security/prison) -"aen" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/prison) -"aeo" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/potato,/obj/item/seeds/carrot,/obj/item/seeds/corn,/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/prison) -"aep" = (/obj/item/cultivator,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/prison) -"aeq" = (/obj/machinery/hydroponics/constructable,/obj/structure/cable{icon_state = "4-8"},/obj/item/seeds/glowshroom,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/machinery/camera{c_tag = "Permabrig Central"; network = list("ss13","prison")},/turf/open/floor/plasteel/dark,/area/security/prison) -"aer" = (/obj/item/reagent_containers/glass/bucket,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/prison) -"aes" = (/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/prison) -"aet" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/prison) -"aeu" = (/obj/machinery/biogenerator,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) -"aev" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"aew" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aex" = (/obj/structure/lattice,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Port Aft"; dir = 1; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) -"aey" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aez" = (/obj/structure/lattice,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera/motion{c_tag = "MiniSat Bridge Starboard Aft"; dir = 1; network = list("minisat")},/turf/open/space,/area/ai_monitored/turret_protected/AIsatextAP) -"aeA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"aeB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"aeC" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/grass,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeD" = (/obj/item/plant_analyzer,/obj/item/shovel/spade,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeE" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/sunflower,/obj/item/seeds/poppy,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeF" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeG" = (/obj/item/storage/crayons,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/prison) -"aeJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aeK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aeL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aeM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAP) -"aeN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) -"aeO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Chamber Hallway"; req_one_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aeP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior) -"aeQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"aeR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/AIsatextAS) -"aeS" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"aeT" = (/obj/structure/bookcase,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeU" = (/turf/open/floor/plasteel/dark,/area/security/prison) -"aeV" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/security/prison) -"aeW" = (/obj/structure/sink{pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"aeX" = (/obj/machinery/washing_machine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"aeY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/AIsatextAP"; dir = 8; name = "MiniSat Port Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"aeZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/camera{c_tag = "MiniSat Maintenance Port Aft"; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afc" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afe" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"aff" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afg" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera/motion{c_tag = "MiniSat Foyer"; network = list("minisat")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afh" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afi" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/camera{c_tag = "MiniSat Maintenance Starboard Aft"; network = list("minisat")},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afl" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afm" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/ai_monitored/turret_protected/AIsatextAS"; dir = 4; name = "MiniSat Starboard Maintenance APC"; pixel_x = 24},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afn" = (/obj/machinery/computer/libraryconsole/bookmanagement,/obj/structure/table,/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/security/prison) -"afo" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/security/prison) -"afp" = (/obj/item/storage/dice,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/prison) -"afq" = (/obj/structure/table,/obj/item/instrument/harmonica,/turf/open/floor/plasteel/dark,/area/security/prison) -"afr" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"aft" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afu" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Out"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afv" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afw" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afx" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afy" = (/obj/effect/landmark/start/cyborg,/obj/item/beacon,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afz" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afA" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afB" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high,/obj/machinery/light/small{dir = 4},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afC" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) -"afD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/prison) -"afE" = (/obj/item/toy/cards/deck,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/prison) -"afF" = (/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/prison) -"afG" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) -"afH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) -"afI" = (/obj/machinery/computer/arcade{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) -"afJ" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space/nearstation) -"afK" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afL" = (/obj/structure/table,/obj/item/wrench,/obj/item/tank/internals/emergency_oxygen,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afM" = (/obj/structure/table,/obj/item/crowbar,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"afN" = (/obj/machinery/teleport/hub,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"afO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"afR" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"afS" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afT" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = -3; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/multitool{layer = 5},/obj/item/extinguisher{layer = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAS) -"afU" = (/turf/closed/wall,/area/security/execution/transfer) -"afX" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"afZ" = (/obj/machinery/vending/sustenance,/turf/open/floor/plasteel/dark,/area/security/prison) -"aga" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/prison) -"agb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/prison) -"agc" = (/obj/machinery/light/small{dir = 1},/obj/machinery/door/window/westleft{base_state = "right"; icon_state = "right"; name = "Unisex Showers"},/turf/open/floor/plasteel/freezer,/area/security/prison) -"agd" = (/obj/machinery/shower{dir = 8},/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/freezer,/area/security/prison) -"age" = (/obj/machinery/teleport/station,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agf" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"agg" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"agh" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agi" = (/obj/machinery/door/poddoor{id = "executionspaceblast"},/turf/open/floor/plating,/area/security/execution/transfer) -"agj" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer) -"agl" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs,/obj/item/razor,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agn" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/dark,/area/security/prison) -"ago" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/floor/plasteel/freezer,/area/security/prison) -"agp" = (/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/security/prison) -"agq" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agr" = (/obj/machinery/computer/teleporter{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"ags" = (/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"agt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access_txt = "65"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agu" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/security/execution/transfer) -"agw" = (/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Solutions Room"; req_access_txt = "2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agx" = (/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agy" = (/turf/closed/wall,/area/security/prison) -"agz" = (/obj/machinery/door/poddoor/preopen{id = "permacell2"; name = "cell blast door"},/obj/machinery/door/airlock/public/glass{id_tag = "permabolt2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) -"agA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/security/prison) -"agB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "permacell1"; name = "cell blast door"},/obj/machinery/door/airlock/public/glass{id_tag = "permabolt1"; name = "Cell 1"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/prison) -"agC" = (/obj/machinery/door/airlock{name = "Unisex Restroom"},/turf/open/floor/plasteel/freezer,/area/security/prison) -"agD" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agE" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agF" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/security/execution/transfer) -"agH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agI" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Permabrig Cell 2"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/machinery/light/small{dir = 1},/obj/item/toy/plush/slimeplushie,/turf/open/floor/plasteel,/area/security/prison) -"agK" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/chair,/turf/open/floor/plasteel,/area/security/prison) -"agL" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Permabrig Cell 1"; network = list("ss13","prison")},/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_y = 24; prison_radio = 1},/obj/machinery/light/small{dir = 1},/obj/item/toy/plush/lizardplushie,/turf/open/floor/plasteel,/area/security/prison) -"agM" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/prison) -"agN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/chair,/turf/open/floor/plasteel,/area/security/prison) -"agO" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison) -"agP" = (/turf/closed/wall,/area/security/main) -"agQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main) -"agR" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"agS" = (/obj/structure/transit_tube,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"agT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/execution/transfer) -"agV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Solutions Room"; req_access_txt = "2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"agW" = (/obj/machinery/flasher{id = "PCell 2"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) -"agY" = (/obj/structure/table,/obj/item/paper,/obj/item/pen,/turf/open/floor/plasteel,/area/security/prison) -"agZ" = (/obj/machinery/flasher{id = "PCell 1"; pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) -"aha" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) -"ahb" = (/obj/structure/toilet/secret/prison{dir = 8},/turf/open/floor/plasteel/freezer,/area/security/prison) -"ahd" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "MiniSat External Access"; req_access_txt = "65"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"ahi" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"ahj" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/clothing/suit/straight_jacket,/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath/medical,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahk" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 6; pixel_y = 27},/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = -6; pixel_y = 32; req_access_txt = "7"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/button/ignition{id = "secigniter"; pixel_x = 6; pixel_y = 36},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahl" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahm" = (/obj/machinery/door/airlock/security/glass{name = "Long-Term Cell 2"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/prison) -"ahn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/closed/wall,/area/security/prison) -"aho" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/prison) -"ahp" = (/obj/machinery/door/airlock/security/glass{name = "Long-Term Cell 1"; req_access_txt = "2"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/prison) -"ahq" = (/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahr" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/turf/open/floor/plating,/area/maintenance/fore) -"ahs" = (/obj/structure/lattice/catwalk,/obj/structure/transit_tube,/turf/open/space/basic,/area/space/nearstation) -"aht" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"ahu" = (/obj/structure/table/glass,/obj/item/flashlight/lamp,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"ahv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"ahw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/execution/transfer) -"ahx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahz" = (/obj/machinery/button/door{id = "executionfireblast"; name = "Transfer Area Lockdown"; pixel_x = 25; pixel_y = -5; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/light_switch{dir = 9; pixel_x = 24; pixel_y = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/execution/transfer) -"ahB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"ahC" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 2"; pixel_x = 5; pixel_y = 24},/obj/machinery/button/door{id = "permacell2"; name = "Cell 2 Lockdown"; pixel_x = 4; pixel_y = 34; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/prison) -"ahD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) -"ahF" = (/obj/machinery/camera{c_tag = "Brig Prison Hallway"; network = list("ss13","prison")},/obj/machinery/computer/security/telescreen/prison{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"ahG" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 1"; pixel_x = 5; pixel_y = 24},/obj/machinery/button/door{id = "permacell1"; name = "Cell 1 Lockdown"; pixel_x = 4; pixel_y = 34; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/prison) -"ahH" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"ahI" = (/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) -"ahJ" = (/obj/machinery/power/apc/highcap/five_k{dir = 1; name = "Prison Wing APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/security/prison) -"ahK" = (/obj/structure/table,/obj/item/melee/chainofcommand,/obj/item/melee/baton,/turf/open/floor/plasteel,/area/security/prison) -"ahL" = (/turf/closed/wall/r_wall,/area/security/armory) -"ahM" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/machinery/firealarm{dir = 4; pixel_x = -27},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahQ" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ahR" = (/obj/structure/lattice/catwalk,/obj/structure/transit_tube/crossing,/turf/open/space/basic,/area/space/nearstation) -"ahS" = (/obj/structure/table/optable,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"ahT" = (/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"ahU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/execution/transfer) -"ahV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Prisoner Transfer Centre"; req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ahZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"aia" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"aib" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) -"aic" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison) -"aid" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aie" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aif" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aig" = (/turf/open/floor/plasteel,/area/security/prison) -"aih" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/item/restraints/handcuffs,/obj/item/razor,/turf/open/floor/plasteel,/area/security/prison) -"aii" = (/obj/structure/table,/obj/item/storage/box/chemimp{pixel_x = 6},/obj/item/storage/box/trackimp{pixel_x = -3},/turf/open/floor/plasteel/dark,/area/security/armory) -"aij" = (/obj/structure/closet/secure_closet/contraband/armory,/obj/item/poster/random_contraband,/obj/item/clothing/suit/armor/navyblue/russian,/obj/item/grenade/plastic/c4,/turf/open/floor/plasteel/dark,/area/security/armory) -"aik" = (/obj/structure/closet/secure_closet/lethalshots,/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"},/turf/open/floor/plasteel/dark,/area/security/armory) -"ail" = (/obj/vehicle/ridden/secway,/turf/open/floor/plasteel/dark,/area/security/armory) -"aim" = (/obj/item/grenade/barrier{pixel_x = 4},/obj/item/grenade/barrier,/obj/item/grenade/barrier{pixel_x = -4},/obj/structure/table,/turf/open/floor/plasteel/dark,/area/security/armory) -"ain" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"aio" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"aip" = (/obj/structure/closet/bombcloset/security,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"aiq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"air" = (/obj/vehicle/ridden/secway,/obj/item/key/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ais" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"ait" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiu" = (/turf/closed/wall,/area/maintenance/department/security/brig) -"aiv" = (/obj/structure/table/glass,/obj/item/storage/backpack/duffelbag/sec/surgery{pixel_y = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"aiw" = (/obj/machinery/power/emitter/anchored{dir = 1; state = 2},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/security/execution/transfer) -"aix" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"aiy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"aiz" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"aiA" = (/turf/closed/wall/r_wall,/area/security/execution/transfer) -"aiB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiD" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/prison) -"aiG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/prison) -"aiH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aiJ" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiK" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/electropack,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aiL" = (/obj/structure/table,/obj/item/storage/box/flashbangs{pixel_x = 6; pixel_y = 3},/obj/item/storage/box/flashbangs{pixel_x = -3; pixel_y = 3},/obj/item/storage/lockbox/loyalty{layer = 4},/turf/open/floor/plasteel/dark,/area/security/armory) -"aiM" = (/turf/open/floor/plasteel/dark,/area/security/armory) -"aiN" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/armory) -"aiO" = (/obj/structure/table,/obj/item/storage/box/firingpins,/obj/item/storage/box/firingpins,/obj/machinery/power/apc/highcap/five_k{dir = 4; name = "Armory APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/security/armory) -"aiP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main) -"aiQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Equipment Room"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main) -"aiR" = (/turf/closed/wall,/area/crew_quarters/heads/hos) -"aiS" = (/turf/closed/wall,/area/maintenance/department/crew_quarters/dorms) -"aiT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aiU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/barsign,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aiV" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiW" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiX" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/item/reagent_containers/glass/beaker,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiY" = (/obj/structure/table,/obj/item/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aiZ" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"aja" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ajb" = (/obj/structure/closet/secure_closet/injection,/obj/machinery/power/apc{dir = 4; name = "Prisoner Transfer Centre"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"ajc" = (/obj/structure/closet/secure_closet/brig,/turf/open/floor/plasteel/dark,/area/security/prison) -"ajd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aje" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison) -"ajf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"ajg" = (/obj/structure/rack,/obj/item/gun/energy/ionrifle,/obj/item/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajh" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/riot{pixel_x = 3; pixel_y = -3},/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot{pixel_x = 3; pixel_y = -3},/obj/item/shield/riot,/obj/item/shield/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) -"aji" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajj" = (/obj/structure/rack,/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajk" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"ajl" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajm" = (/obj/structure/table,/obj/item/storage/fancy/donut_box{pixel_y = 2},/obj/structure/noticeboard{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajn" = (/obj/structure/table,/obj/structure/sign/plaques/golden{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/item/storage/box/handcuffs{pixel_x = 1; pixel_y = 3},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajo" = (/obj/machinery/vending/coffee,/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajp" = (/obj/machinery/photocopier,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajq" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"ajr" = (/obj/item/reagent_containers/food/snacks/donut/chaos,/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"ajs" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) -"ajt" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 4; pixel_y = 7},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aju" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"ajv" = (/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ajx" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ajy" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ajz" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ajA" = (/obj/docking_port/stationary{dheight = 1; dir = 8; dwidth = 12; height = 17; id = "syndicate_ne"; name = "northeast of station"; width = 23},/turf/open/space,/area/space/nearstation) -"ajB" = (/obj/item/storage/box/mousetraps,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajD" = (/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajE" = (/obj/structure/bed,/obj/item/bedsheet,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajF" = (/obj/machinery/atmospherics/components/unary/tank/oxygen,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajG" = (/obj/machinery/atmospherics/components/unary/tank/nitrogen,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ajH" = (/turf/closed/wall,/area/security/processing/cremation) -"ajI" = (/obj/machinery/door/airlock/security{aiControlDisabled = 1; name = "Crematorium"; req_access_txt = "2;27"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"ajJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) -"ajK" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) -"ajL" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "Prison Gate"; name = "prison blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) -"ajM" = (/turf/closed/wall,/area/security/brig) -"ajN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"ajO" = (/obj/structure/closet{name = "Evidence Closet"},/obj/structure/sign/poster/official/safety_report{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"ajP" = (/obj/structure/rack,/obj/item/gun/energy/e_gun{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/firealarm{dir = 4; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/armory) -"ajR" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt{layer = 3.00001},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/armory) -"ajT" = (/obj/structure/rack,/obj/item/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) -"ajU" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "Security Office APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"ajV" = (/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) -"ajW" = (/obj/structure/chair/stool,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) -"ajX" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajY" = (/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ajZ" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aka" = (/obj/machinery/suit_storage_unit/hos,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akb" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/sign/plaques/kiddie{desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint."; name = "\improper 'Diploma' frame"; pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akc" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/status_display/evac{pixel_y = 32},/obj/machinery/light{dir = 1; light_color = "#706891"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akd" = (/obj/structure/table/wood,/obj/item/storage/box/seccarts{pixel_x = 3; pixel_y = 2},/obj/item/storage/box/deputy,/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"ake" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/machinery/button/door{id = "hos_spess_shutters"; name = "Space shutters"; pixel_x = 24; req_access_txt = "1"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akf" = (/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"akg" = (/obj/structure/mineral_door/wood,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akh" = (/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akj" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/item/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/public/glass{name = "space-bridge access"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ako" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akp" = (/obj/machinery/door/airlock/public/glass{name = "space-bridge access"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"akr" = (/obj/machinery/washing_machine,/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aks" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"akt" = (/obj/structure/bed,/obj/item/bedsheet,/obj/machinery/button/door{id = "mainthideout"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aku" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1; node1_concentration = 0.2; node2_concentration = 0.8; on = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"akv" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"akw" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/obj/machinery/meter,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"akx" = (/obj/structure/bodycontainer/crematorium,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"aky" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"akz" = (/obj/machinery/button/crematorium{pixel_x = 25},/obj/machinery/power/apc{dir = 1; name = "Crematorium APC"; pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"akA" = (/turf/closed/wall/r_wall,/area/security/brig) -"akB" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/reagent_containers/spray/cleaner,/obj/structure/table/glass,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"akC" = (/obj/item/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/regular,/obj/structure/table/glass,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) -"akD" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 24},/obj/structure/table/glass,/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) -"akE" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) -"akF" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"akG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"akH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) -"akI" = (/obj/machinery/door/airlock/security{name = "Evidence Room"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"akJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) -"akK" = (/obj/structure/closet{name = "Evidence Closet"},/obj/machinery/camera{c_tag = "Brig Evidence Room"; dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"akL" = (/obj/structure/rack,/obj/item/gun/energy/e_gun/advtaser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_x = 3; pixel_y = -3},/obj/item/gun/energy/e_gun/advtaser,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) -"akM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) -"akN" = (/obj/effect/landmark/event_spawn,/obj/structure/rack,/obj/item/key/security,/turf/open/floor/plasteel/dark,/area/security/armory) -"akO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/armory) -"akP" = (/obj/structure/rack,/obj/item/gun/ballistic/shotgun/riot,/obj/item/gun/ballistic/shotgun/riot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/security/armory) -"akQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"akR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"akT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"akU" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akV" = (/obj/item/storage/secure/safe{pixel_x = -22; pixel_y = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akW" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"akZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"ala" = (/obj/structure/transit_tube/curved{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"alb" = (/obj/structure/lattice/catwalk,/obj/structure/showcase/cyborg/old{pixel_y = 20},/turf/open/space,/area/space/nearstation) -"alc" = (/obj/structure/table,/obj/item/storage/fancy/cigarettes/cigars,/obj/item/stack/spacecash/c20,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ale" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"alf" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"alg" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"alh" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ali" = (/obj/machinery/door/airlock/abandoned{id_tag = "mainthideout"; name = "Hideout"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alj" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"all" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"aln" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alo" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Brig Crematorium"; dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig) -"alq" = (/obj/item/storage/box/bodybags,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/light{dir = 8},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/reagent_containers/syringe{name = "steel point"},/obj/item/reagent_containers/glass/bottle/charcoal,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"alr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"als" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/security/brig) -"alt" = (/obj/machinery/door/window/westleft{dir = 4; name = "Brig Infirmary"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) -"alu" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alv" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"alw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"alx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/brig) -"aly" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/light/small,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"alz" = (/obj/structure/closet{name = "Evidence Closet"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"alA" = (/obj/machinery/flasher/portable,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/armory) -"alB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"alC" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = -4; pixel_y = 12},/obj/item/pen,/obj/item/folder/red{layer = 2.9; pixel_x = 8},/turf/open/floor/plasteel,/area/security/main) -"alD" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel,/area/security/main) -"alE" = (/turf/open/floor/plasteel,/area/security/main) -"alF" = (/obj/machinery/computer/security,/turf/open/floor/plasteel,/area/security/main) -"alG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"alH" = (/turf/open/floor/plasteel/dark,/area/security/main) -"alI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"alJ" = (/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"alK" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"alL" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"alM" = (/obj/machinery/computer/secure_data{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"alN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"alO" = (/obj/structure/transit_tube/diagonal,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"alP" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"alQ" = (/obj/structure/chair/stool/bar,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) -"alR" = (/obj/effect/landmark/blobstart,/obj/structure/chair/stool/bar,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"alS" = (/obj/structure/chair/stool/bar,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"alT" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alU" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Supply to Security"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"alW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alX" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"alZ" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Brig Infirmary"; dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark,/area/security/brig) -"ama" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"amb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/security/brig) -"amc" = (/obj/machinery/door/window/westleft{base_state = "right"; dir = 4; icon_state = "right"; name = "Brig Infirmary"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/security/brig) -"amd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"ame" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"amf" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{dir = 4; name = "Brig APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"amg" = (/turf/closed/wall/r_wall,/area/security/warden) -"amh" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/warden) -"ami" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/warden) -"amj" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/warden) -"amk" = (/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{base_state = "right"; icon_state = "right"; name = "Armory"; req_access_txt = "3"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/warden) -"aml" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) -"amm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Security Office"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = -31},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"amn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"amo" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"amp" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"amq" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"amr" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ams" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/main) -"amt" = (/obj/machinery/door/airlock/command/glass{name = "Head of Security"; req_access_txt = "58"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"amu" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"amv" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/head_of_security,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amx" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amy" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amz" = (/obj/machinery/computer/security/hos{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"amA" = (/obj/structure/transit_tube/curved/flipped{dir = 4},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"amB" = (/obj/structure/transit_tube/crossing/horizontal,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"amC" = (/obj/structure/transit_tube/horizontal,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"amD" = (/obj/structure/transit_tube/curved/flipped{dir = 8},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"amF" = (/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/department/crew_quarters/dorms) -"amG" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/crew_quarters/dorms) -"amH" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"amI" = (/obj/machinery/door/airlock/maintenance{name = "Crematorium Maintenance"; req_one_access_txt = "2;27"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"amJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/closed/wall,/area/security/processing/cremation) -"amK" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 1; icon_state = "left"; name = "Security Delivery"; req_access_txt = "1"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 1; freq = 1400; location = "Security"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"amL" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/brig) -"amM" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"amN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"amO" = (/obj/structure/closet/crate/freezer,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/item/reagent_containers/blood/OMinus,/obj/item/reagent_containers/blood/OMinus,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/brig) -"amP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"amQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"amR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"amS" = (/obj/structure/closet/secure_closet/warden,/obj/item/clothing/mask/gas/sechailer,/obj/machinery/power/apc{dir = 8; name = "Brig Control APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amT" = (/obj/machinery/computer/prisoner/management,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amU" = (/obj/machinery/computer/security,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Brig Control Room"},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_y = 24},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amV" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amX" = (/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"amZ" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"ana" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"anb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"anc" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/open/floor/plasteel,/area/security/main) -"and" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main) -"ane" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) -"anf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ang" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anh" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"ani" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"anj" = (/obj/structure/table/wood,/obj/item/phone,/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"ank" = (/obj/machinery/computer/card/minor/hos{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/hos) -"anl" = (/obj/structure/transit_tube/diagonal,/turf/open/space/basic,/area/space/nearstation) -"anm" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Pete's Speakeasy"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"anq" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"anr" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ans" = (/obj/item/wirecutters,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ant" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"anu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"anv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall,/area/security/processing/cremation) -"anw" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/security/processing/cremation) -"anx" = (/obj/machinery/door/airlock/maintenance{name = "Brig Infirmary Maintenance"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"any" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/sign/map{icon_state = "map-pubby"; pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"anz" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"anA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"anB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden) -"anC" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anJ" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"anK" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) -"anL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"anM" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) -"anN" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/security_officer,/turf/open/floor/plasteel,/area/security/main) -"anO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"anP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/security/main) -"anQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"anR" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anS" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/keycard_auth{pixel_y = -24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anT" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anU" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Head of Security's Office"; dir = 1},/obj/item/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_y = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anV" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{name = "Head of Security's Office APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"anW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "hos_spess_shutters"; name = "Space shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"anX" = (/turf/closed/wall/r_wall,/area/teleporter) -"anY" = (/obj/structure/closet/firecloset,/obj/effect/decal/cleanable/cobweb,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"aob" = (/obj/structure/closet/emcloset,/obj/item/camera,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"aod" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoe" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aof" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aog" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aok" = (/obj/machinery/computer/security/labor,/turf/open/floor/plasteel/dark,/area/security/brig) -"aol" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel/dark,/area/security/brig) -"aom" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aon" = (/turf/open/floor/plasteel,/area/security/brig) -"aoo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"aop" = (/obj/structure/bed/dogbed,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/mob/living/simple_animal/pet/dog/pug{name = "McGriff"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoq" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aor" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aos" = (/obj/machinery/door/airlock/security{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aot" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aou" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) -"aov" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"aow" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aox" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 8},/turf/open/floor/plasteel,/area/security/main) -"aoy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aoz" = (/turf/closed/wall,/area/maintenance/fore) -"aoB" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/bot_white,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) -"aoH" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/solar/port) -"aoI" = (/obj/structure/lattice,/turf/open/space,/area/solar/port) -"aoJ" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/solar/port) -"aoK" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"aoL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aoO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/camera{c_tag = "Brig Gulag Teleporter"; dir = 4},/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/storage/box/prisoner,/obj/item/razor{pixel_x = -6},/obj/item/paper/guides/jobs/security/labor_camp,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/security/brig) -"aoP" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"aoQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) -"aoR" = (/obj/item/book/manual/wiki/security_space_law,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/sunglasses,/obj/structure/table/reinforced,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoS" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "Secure Gate"; name = "Entrance Lockdown"; pixel_x = 5; pixel_y = -2},/obj/machinery/button/door{id = "Prison Gate"; name = "Permabrig Lockdown"; pixel_x = 5; pixel_y = 8; req_access_txt = "2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoT" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/warden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/computer/crew{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoV" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoX" = (/obj/structure/rack,/obj/item/crowbar,/obj/item/wrench,/obj/item/laser_pointer/red,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoY" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light_switch{pixel_y = -22},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"aoZ" = (/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) -"apa" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apc" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 7},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/main) -"apd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"ape" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apf" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/sign/warning/vacuum/external{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"apg" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/security{name = "Security Access"; req_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/fore) -"aph" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"api" = (/obj/machinery/power/apc{dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"apj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) -"apk" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/fore) -"apl" = (/obj/machinery/door/airlock/external{name = "Security External Airlock"; req_access_txt = "63"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"apm" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) -"apn" = (/turf/open/floor/plating,/area/maintenance/fore) -"apo" = (/obj/structure/transit_tube/diagonal/crossing,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"app" = (/obj/machinery/camera{c_tag = "Bridge Starboard Exterior"; dir = 1},/turf/open/space,/area/space/nearstation) -"apr" = (/obj/machinery/gateway/centerstation,/turf/open/floor/plasteel/dark,/area/gateway) -"apt" = (/obj/structure/chair{dir = 4},/obj/item/clothing/mask/cigarette,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"apu" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"apv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"apw" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/camera_film,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) -"apz" = (/obj/item/target/clown,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"apB" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"apE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"apF" = (/obj/machinery/computer/prisoner/gulag_teleporter_computer{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) -"apG" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel/dark,/area/security/brig) -"apH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) -"apI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/security/warden) -"apJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) -"apK" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{dir = 1; name = "Armory Desk"; req_access_txt = "3"},/obj/machinery/door/window/southleft{name = "Reception Desk"; req_access_txt = "63"},/obj/item/paper_bin{layer = 2.9},/obj/item/pen{pixel_x = 4; pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"apL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden) -"apM" = (/obj/machinery/door/airlock/security/glass{name = "Brig Control"; req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) -"apN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"apO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"apP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security Office"; req_access_txt = "1"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/main) -"apQ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/fore) -"apR" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/fore) -"apS" = (/obj/structure/transit_tube/curved,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"apT" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"apU" = (/obj/effect/turf_decal/bot_white/left,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) -"apV" = (/obj/effect/turf_decal/bot_white,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) -"apW" = (/obj/effect/turf_decal/bot_white/right,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) -"apX" = (/turf/closed/wall,/area/crew_quarters/dorms) -"aqa" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"aqb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space,/area/solar/port) -"aqc" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"aqd" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"aqe" = (/obj/item/target/alien,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aqg" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aqh" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aqi" = (/obj/structure/closet,/obj/item/clothing/under/color/black,/obj/item/clothing/under/color/red,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aqm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"aqn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"aqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqq" = (/obj/machinery/camera{c_tag = "Brig Cells"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqs" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"aqv" = (/obj/machinery/camera{c_tag = "Brig Entrance"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqz" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqA" = (/obj/machinery/computer/security/telescreen/interrogation{dir = 8; pixel_x = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/brig) -"aqC" = (/turf/open/floor/plasteel/dark,/area/security/brig) -"aqD" = (/obj/machinery/status_display/ai{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/security/brig) -"aqE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore) -"aqF" = (/turf/closed/wall/r_wall,/area/maintenance/fore) -"aqG" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"aqH" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/bridge) -"aqI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/turf/open/floor/plating,/area/bridge) -"aqJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/bridge) -"aqK" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/bridge) -"aqL" = (/obj/machinery/computer/bank_machine,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aqM" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"aqN" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"aqO" = (/obj/machinery/power/apc{dir = 1; name = "Vault APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"aqP" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aqQ" = (/obj/structure/window/reinforced,/obj/machinery/power/apc{dir = 8; name = "Gateway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/gateway) -"aqR" = (/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/gateway) -"aqS" = (/obj/machinery/door/window{name = "Gateway Chamber"; req_access_txt = "62"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/gateway) -"aqT" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aqU" = (/obj/machinery/washing_machine,/obj/machinery/requests_console{department = "Crew Quarters"; pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aqV" = (/obj/machinery/washing_machine,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aqY" = (/obj/docking_port/stationary{dwidth = 2; height = 6; id = "monastery_shuttle_station"; name = "Station"; roundstart_template = /datum/map_template/shuttle/escape_pod/large; width = 5},/turf/open/space/basic,/area/space) -"ara" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/port) -"arc" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ard" = (/obj/item/clothing/head/cone,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ari" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"arj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/obj/machinery/button/door{id = "prison release"; name = "Labor Camp Shuttle Lockdown"; pixel_y = -25; req_access_txt = "2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"ark" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"arl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig) -"arm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"arn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/security/brig) -"aro" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"arp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"arq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"arr" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) -"ars" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"art" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aru" = (/obj/machinery/door/airlock/security{name = "Interrogation"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"arv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"arw" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"arx" = (/obj/item/flashlight/lamp,/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/security/brig) -"ary" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"arz" = (/obj/machinery/camera{c_tag = "Brig Interrogation"; dir = 8; network = list("interrogation")},/turf/open/floor/plasteel/dark,/area/security/brig) -"arA" = (/turf/closed/wall/r_wall,/area/bridge) -"arB" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Bridge MiniSat Access"; dir = 4},/turf/open/floor/plating,/area/bridge) -"arC" = (/obj/structure/transit_tube_pod{dir = 4},/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/turf/open/floor/plating,/area/bridge) -"arD" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/bridge) -"arE" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/curved/flipped{dir = 8},/turf/open/floor/plating,/area/bridge) -"arF" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"arG" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/bridge) -"arH" = (/obj/machinery/modular_computer/console/preset/command,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"arI" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arJ" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arK" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/item/folder/yellow{pixel_y = 4},/obj/structure/table/glass,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/pen,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arL" = (/obj/machinery/computer/card,/obj/machinery/camera{c_tag = "Bridge - Central"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arM" = (/obj/machinery/computer/communications,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arN" = (/obj/machinery/computer/station_alert,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arO" = (/obj/machinery/status_display/ai{pixel_y = 32},/obj/structure/table/glass,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/recharger,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arP" = (/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arQ" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arR" = (/obj/machinery/computer/prisoner/management,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"arS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"arT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"arU" = (/obj/machinery/nuclearbomb/selfdestruct,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"arV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"arW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/ore_silo,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"arX" = (/obj/machinery/camera{c_tag = "Gateway"; dir = 4},/obj/structure/table,/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/paper/pamphlet,/turf/open/floor/plasteel,/area/gateway) -"arY" = (/obj/machinery/computer/gateway_control,/turf/open/floor/plasteel,/area/gateway) -"arZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"asa" = (/obj/structure/table,/obj/item/radio/off{pixel_y = 6},/obj/item/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/radio/off,/obj/structure/sign/warning/biohazard{pixel_x = 32},/obj/item/radio/off,/turf/open/floor/plasteel,/area/gateway) -"asb" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"asc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"asd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"ase" = (/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"asf" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"asg" = (/obj/machinery/newscaster{pixel_x = 32},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/bedsheetbin/color,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"ash" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/dorms) -"asi" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/crew_quarters/dorms) -"asj" = (/obj/effect/spawner/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/crew_quarters/dorms) -"aso" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"asr" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"asu" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"asw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig) -"asx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 1"; name = "Cell 1"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"asy" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 2"; name = "Cell 2"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"asA" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"asB" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 3"; name = "Cell 3"; pixel_y = -32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"asC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asE" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"asG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/brig) -"asH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"asI" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"asJ" = (/obj/item/folder/red,/obj/item/taperecorder,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/table/glass,/turf/open/floor/plasteel/dark,/area/security/brig) -"asK" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"asL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig) -"asM" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/bridge) -"asN" = (/turf/open/floor/plasteel,/area/bridge) -"asO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/bridge) -"asP" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/bridge) -"asQ" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/keycard_auth{pixel_x = -24; pixel_y = 10},/obj/machinery/button/door{id = "bridgespace"; name = "Bridge Space Lockdown"; pixel_x = -24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"asR" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"asS" = (/turf/open/floor/plasteel/dark,/area/bridge) -"asT" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/button/door{id = "bridgespace"; name = "Bridge Space Lockdown"; pixel_x = 24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"asU" = (/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/bridge) -"asV" = (/obj/structure/closet/crate/goldcrate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"asW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"asX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"asY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green{luminosity = 2},/area/ai_monitored/nuke_storage) -"asZ" = (/obj/structure/closet/crate/silvercrate,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"ata" = (/obj/machinery/light_switch{pixel_x = -20},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"atb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"atc" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"atd" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/gateway) -"atf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/dorms) -"atg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"ath" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Laundry Room"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"ati" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"atj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"atk" = (/turf/open/floor/plating,/area/crew_quarters/dorms) -"atl" = (/obj/machinery/light/small{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/crew_quarters/dorms) -"atn" = (/turf/closed/wall,/area/crew_quarters/fitness/recreation) -"atp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green,/area/maintenance/department/security/brig) -"atq" = (/turf/open/floor/circuit/green,/area/maintenance/department/security/brig) -"atv" = (/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/brig) -"atw" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 1"; name = "Cell 1"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"atx" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) -"aty" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"atz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) -"atA" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 2"; name = "Cell 2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"atB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"atC" = (/obj/machinery/door/window/brigdoor/security/cell{id = "Cell 3"; name = "Cell 3"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"atD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) -"atE" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/security/glass{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"atF" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) -"atG" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/security/glass{id_tag = "innerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"atH" = (/obj/machinery/door/airlock/security/glass{name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) -"atI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) -"atJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) -"atK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Emergency Escape"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/fore) -"atL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sign/warning/securearea,/turf/closed/wall,/area/bridge) -"atM" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"atN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/sign/warning/securearea,/turf/closed/wall,/area/bridge) -"atO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/bridge) -"atP" = (/obj/machinery/computer/monitor{name = "Bridge Power Monitoring Console"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"atQ" = (/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"atR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"atS" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"atT" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"atU" = (/obj/item/beacon,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"atV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"atW" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"atX" = (/obj/machinery/computer/shuttle/labor{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"atY" = (/turf/closed/wall,/area/bridge) -"atZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"aua" = (/obj/structure/closet/secure_closet/freezer/money,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/clothing/head/bearpelt,/obj/item/skub,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aub" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"auc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aud" = (/obj/machinery/camera/motion{c_tag = "Vault"; dir = 1; network = list("vault")},/obj/machinery/light,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aue" = (/obj/structure/safe,/obj/item/bikehorn/golden,/obj/item/ammo_box/a357,/obj/item/tank/internals/plasma/full,/obj/item/disk/nuclear/fake,/obj/item/stack/ore/diamond,/obj/item/gun/energy/disabler,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"auf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -30},/turf/open/floor/plasteel,/area/gateway) -"aug" = (/obj/machinery/button/door{id = "stationawaygate"; name = "Gateway Access Shutter Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/crate/internals,/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket"},/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/obj/item/flashlight,/turf/open/floor/plasteel,/area/gateway) -"auh" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/gateway) -"aui" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/gateway) -"auj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/dorms) -"auk" = (/obj/machinery/door/airlock{name = "Laundry Room"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"aul" = (/obj/machinery/computer/shuttle/monastery_shuttle,/obj/structure/sign/warning/pods{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"aum" = (/obj/effect/spawner/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/crew_quarters/dorms) -"aur" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) -"aus" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aut" = (/obj/item/clothing/head/collectable/police,/turf/open/floor/mech_bay_recharge_floor,/area/maintenance/department/security/brig) -"auu" = (/obj/machinery/computer/mech_bay_power_console{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel,/area/maintenance/department/security/brig) -"aux" = (/obj/item/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast."; name = "Prison Intercom (General)"; pixel_x = -25; pixel_y = -2; prison_radio = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"auz" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"auA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) -"auB" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"auC" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"auD" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 8; name = "Brig Desk"; req_access_txt = "1"},/obj/item/paper_bin,/obj/item/pen{layer = 3.1},/turf/open/floor/plasteel/dark,/area/security/brig) -"auE" = (/obj/machinery/computer/secure_data,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "innerbrig"; name = "Brig Interior Doors Control"; normaldoorcontrol = 1; pixel_x = -6; pixel_y = 36; req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer."; id = "outerbrig"; name = "Brig Exterior Doors Control"; normaldoorcontrol = 1; pixel_x = -6; pixel_y = 24; req_access_txt = "63"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = 6; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/brig) -"auF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) -"auG" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/dark,/area/security/brig) -"auH" = (/turf/closed/wall,/area/crew_quarters/heads/captain) -"auI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/heads/captain) -"auJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"auK" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/bridge) -"auL" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/bridge) -"auM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/bridge) -"auN" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"auO" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"auP" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"auQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"auR" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/bridge) -"auS" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"auT" = (/obj/machinery/computer/cargo/request{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"auU" = (/obj/structure/closet/emcloset/anchored,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/bridge) -"auV" = (/turf/open/floor/plating,/area/bridge) -"auW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"auX" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"auY" = (/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/vault{req_access_txt = "53"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"auZ" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"ava" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Access"; req_access_txt = "62"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/gateway) -"avb" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "stationawaygate"; name = "Gateway Access Shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/gateway) -"avc" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/gateway) -"avd" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm3Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) -"ave" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm3Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/wood,/area/crew_quarters/dorms) -"avf" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/dorms) -"avg" = (/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/wood,/area/crew_quarters/dorms) -"avh" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avi" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/camera{c_tag = "Dormitories Fore"},/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; name = "Monastery Monitor"; network = list("monastery"); pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avk" = (/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avl" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/computer/cryopod{pixel_y = 30},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"avm" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) -"avn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"avp" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/box; width = 9},/turf/open/space/basic,/area/space) -"avq" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/security/brig) -"avr" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Labor Shuttle Dock"; dir = 8},/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/brig) -"avs" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 1"; pixel_x = -28},/obj/item/bedsheet/blue,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avu" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1"; name = "Cell 1 Locker"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"avv" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 2"; pixel_x = -28},/obj/item/bedsheet/green,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avw" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avx" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2"; name = "Cell 2 Locker"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"avy" = (/obj/structure/bed,/obj/machinery/flasher{id = "Cell 3"; pixel_x = -28},/obj/item/bedsheet/orange,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avA" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"avB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"avC" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 8; name = "Brig Desk"; req_access_txt = "1"},/obj/item/folder/red,/obj/item/restraints/handcuffs,/turf/open/floor/plasteel/dark,/area/security/brig) -"avD" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"avE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/security/brig) -"avF" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"avG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/heads/captain) -"avH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/curtain,/obj/item/soap/deluxe,/obj/item/bikehorn/rubberducky,/obj/machinery/shower{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"avI" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"avJ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"avK" = (/obj/structure/toilet/secret/low_loot{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"avL" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/fore) -"avM" = (/obj/machinery/door/airlock/command{name = "Balcony"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"avN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"avO" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Bridge MiniSat Access Foyer"; dir = 1},/obj/machinery/light/small,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"avP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"avQ" = (/obj/machinery/door/airlock/command{name = "MiniSat Access"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"avR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"avS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"avT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/bridge) -"avU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"avV" = (/obj/structure/table/glass,/obj/item/storage/box/ids{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/PDAs,/turf/open/floor/plasteel/dark,/area/bridge) -"avW" = (/obj/structure/table/glass,/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel/dark,/area/bridge) -"avX" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/turf/open/floor/plasteel/dark,/area/bridge) -"avY" = (/obj/structure/table/glass,/obj/item/aicard,/turf/open/floor/plasteel/dark,/area/bridge) -"avZ" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs,/obj/item/assembly/flash/handheld,/obj/item/laser_pointer/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"awa" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"awb" = (/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"awc" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Bridge External Access"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"awd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central) -"awe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) -"awf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awg" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awh" = (/obj/machinery/camera{c_tag = "Vault Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awk" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awm" = (/obj/machinery/light{dir = 1},/obj/item/kirbyplants/random,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awn" = (/obj/structure/dresser,/turf/open/floor/wood,/area/crew_quarters/dorms) -"awo" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/dorms) -"awp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood{icon_state = "wood-broken7"},/area/crew_quarters/dorms) -"awq" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Dorm 3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"awr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aws" = (/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"awt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"awu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"awv" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aww" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) -"awB" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/crew_quarters/fitness/recreation) -"awC" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/recreation"; dir = 1; name = "Fitness Room APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"awD" = (/obj/machinery/light{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"awE" = (/obj/item/storage/briefcase,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"awH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/dark,/area/security/brig) -"awI" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"awJ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"awK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"awL" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/security/glass{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"awM" = (/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"awN" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/security/glass{id_tag = "outerbrig"; name = "Brig"; req_access_txt = "63"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"awO" = (/obj/structure/table/reinforced,/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/item/radio,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) -"awP" = (/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/item/reagent_containers/food/snacks/donut,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/structure/table/reinforced,/obj/item/folder/red{layer = 2.9},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) -"awQ" = (/obj/structure/table/reinforced,/obj/item/pen,/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/machinery/door/window/southleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Brig Desk"; req_access_txt = "1"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/security/brig) -"awR" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awS" = (/obj/machinery/door/airlock{name = "Private Restroom"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/heads/captain) -"awT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Captain's Office Access"; req_access_txt = "20"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/heads/captain) -"awU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"awY" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"awZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/bridge) -"axa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"axb" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"axc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"axd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) -"axe" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/computer/rdconsole{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"axg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/bridge) -"axh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/bridge) -"axi" = (/turf/closed/wall/r_wall,/area/hallway/primary/central) -"axj" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/central) -"axk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/central) -"axl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/hallway/primary/central) -"axm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/stairs,/area/hallway/primary/central) -"axn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/primary/central) -"axo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"axp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axq" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy,/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"axu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"axv" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/recreation) -"axw" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"axy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"axz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"axA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"axB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port) -"axC" = (/turf/closed/wall,/area/maintenance/solars/port) -"axE" = (/obj/machinery/door/poddoor/preopen{id = "prison release"; name = "prisoner processing blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axF" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axG" = (/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axH" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axI" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axJ" = (/obj/structure/sign/departments/security{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axL" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"axN" = (/obj/structure/dresser,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"axO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"axP" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Captain's Quarters"},/obj/item/clothing/suit/armor/riot/knight/blue,/obj/item/clothing/head/helmet/knight/blue,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"axQ" = (/obj/machinery/suit_storage_unit/captain,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"axR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"axS" = (/obj/machinery/power/apc{dir = 1; name = "Captain's Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/obj/item/kirbyplants/random,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axT" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_y = 30},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axU" = (/obj/machinery/computer/card,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axV" = (/obj/machinery/computer/communications,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axW" = (/obj/structure/filingcabinet/employment,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"axX" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"axY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"axZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"aya" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"ayb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"ayc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"ayd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aye" = (/obj/machinery/door/airlock/command{name = "External Access"; req_one_access_txt = "19; 65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"ayf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"ayg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/bridge) -"ayh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/stairs,/area/hallway/primary/central) -"ayi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm2Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) -"ayj" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm2Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayk" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayl" = (/obj/machinery/button/door{id = "Dorm2"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"aym" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"ayn" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayo" = (/obj/structure/table/wood,/obj/item/storage/dice,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayq" = (/obj/structure/table/wood,/obj/item/storage/backpack,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ayr" = (/turf/open/floor/carpet,/area/crew_quarters/dorms) -"ays" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"ayt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Recreation Room"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"ayu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"ayw" = (/obj/machinery/computer/holodeck{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"ayx" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"ayy" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/port) -"ayz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/solars/port) -"ayA" = (/obj/machinery/power/solar_control{dir = 4; id = "portsolar"; name = "Port Solar Control"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port) -"ayB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/port) -"ayC" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Port Solar APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/solars/port) -"ayD" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ayE" = (/obj/machinery/button/door{id = "prison release"; name = "Labor Camp Shuttle Lockdown"; pixel_x = -25; req_access_txt = "2"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayF" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayI" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigS2"; location = "BrigP"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayJ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayL" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayN" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigP"; location = "BrigS1"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayO" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayQ" = (/obj/item/beacon,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayR" = (/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ayS" = (/obj/structure/bed,/obj/item/bedsheet/captain,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"ayT" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"ayU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"ayV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"ayW" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"ayX" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"ayY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"ayZ" = (/obj/machinery/door/window{dir = 8; name = "Captain's Desk"; req_access_txt = "20"},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aza" = (/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"azb" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start/captain,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"azc" = (/obj/item/storage/secure/safe{pixel_x = 35; pixel_y = 5},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"azd" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aze" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/bridge) -"azf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) -"azg" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azh" = (/obj/machinery/light{light_color = "#e8eaff"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"azk" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai_upload"; name = "AI Upload turret control"; pixel_y = -25},/obj/machinery/camera{c_tag = "Bridge Central"; dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) -"azm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/bridge) -"azn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"azo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; dir = 4; name = "Bridge APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"azp" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Bridge External Access"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/bridge) -"azq" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"azr" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azs" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azu" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Dorm 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"azv" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azx" = (/obj/structure/table/wood,/obj/item/paicard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azy" = (/obj/structure/table/wood,/obj/item/toy/cards/deck{pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"azA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"azB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Recreation Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azE" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azF" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Holodeck"; dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"azG" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"azH" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/solar/port) -"azI" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space,/area/solar/port) -"azJ" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/port) -"azK" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"azL" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port) -"azN" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azP" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azQ" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azS" = (/obj/machinery/door/airlock/engineering{name = "Port Solar Access"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"azY" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"azZ" = (/mob/living/simple_animal/bot/secbot/beepsky{name = "Officer Beepsky"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aAa" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/potato{name = "\improper Beepsky's emergency battery"},/obj/item/paper/fluff/jobs/security/beepsky_mom,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aAb" = (/obj/machinery/power/apc{dir = 8; name = "Fore Primary Hallway APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAc" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAd" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAe" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAf" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Port"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAk" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Tool"; location = "BrigS2"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAn" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Fore Primary Hallway Starboard"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAo" = (/obj/item/kirbyplants{icon_state = "plant-14"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aAp" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"aAq" = (/obj/structure/table/wood,/obj/item/storage/box/matches,/obj/item/razor{pixel_x = -4; pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/obj/item/reagent_containers/food/drinks/flask/gold,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"aAr" = (/obj/structure/chair/comfy/brown{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"aAs" = (/obj/structure/table/wood,/obj/item/kitchen/fork,/obj/item/card/id/captains_spare,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/captain) -"aAt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aAu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAv" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAw" = (/obj/structure/table/wood,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAx" = (/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAy" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/stamp/captain,/obj/machinery/light{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aAz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Entrance Lockdown"; pixel_x = -24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aAA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"aAB" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) -"aAC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access_txt = "16"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aAD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/bridge) -"aAE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Entrance Lockdown"; pixel_x = 24; pixel_y = -2; req_access_txt = "19"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aAF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) -"aAG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) -"aAH" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) -"aAI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAM" = (/obj/structure/chair,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aAN" = (/turf/closed/wall,/area/hallway/primary/central) -"aAO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aAP" = (/obj/effect/landmark/start/assistant,/obj/structure/chair/comfy{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/dorms) -"aAQ" = (/obj/structure/chair/comfy{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"aAS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aAT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aAU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aAV" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/port) -"aAW" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/multitool,/turf/open/floor/plating,/area/maintenance/solars/port) -"aAX" = (/obj/structure/chair/stool,/obj/machinery/power/terminal{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) -"aAY" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) -"aBa" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"aBc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aBd" = (/turf/closed/wall,/area/security/detectives_office) -"aBe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "datboidetective"; name = "privacy shutters"},/turf/open/floor/plating,/area/security/detectives_office) -"aBf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/security/detectives_office) -"aBg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aBh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aBi" = (/turf/closed/wall,/area/storage/primary) -"aBj" = (/turf/closed/wall/r_wall,/area/storage/primary) -"aBk" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/vending/wardrobe/cap_wardrobe,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBl" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBm" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBn" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBo" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBp" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aBq" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"aBr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) -"aBs" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBt" = (/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBu" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBx" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/ai_monitored/turret_protected/ai_upload"; dir = 1; name = "Upload APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aBy" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/turf/open/floor/plasteel/dark,/area/bridge) -"aBz" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/item/storage/secure/safe{pixel_x = -22; pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBA" = (/obj/machinery/computer/security/telescreen/vault{pixel_y = 30},/obj/machinery/computer/security/mining,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBB" = (/obj/machinery/computer/cargo/request,/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBC" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; name = "Monastery Monitor"; network = list("monastery"); pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBD" = (/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Head of Personnel's Office"},/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBE" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = 30},/obj/machinery/pdapainter{pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBF" = (/obj/machinery/status_display/evac{pixel_y = 32},/obj/structure/bed/dogbed/ian,/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBG" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aBH" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Central Hall APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aBI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aBJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aBK" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/item/crowbar,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aBL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "Dorm1Shutters"; name = "Dorm Shutters"},/turf/open/floor/plating,/area/crew_quarters/dorms) -"aBM" = (/obj/structure/bed,/obj/machinery/button/door{id = "Dorm1Shutters"; name = "Privacy Shutters Control"; pixel_y = 26},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aBN" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aBO" = (/obj/machinery/button/door{id = "Dorm1"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aBP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aBQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aBR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aBS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aBT" = (/obj/structure/closet/wardrobe/white,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aBU" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aBW" = (/obj/structure/closet/wardrobe/grey,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aBX" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/shoes/jackboots,/obj/item/storage/backpack,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/fitness/recreation) -"aBY" = (/obj/item/kirbyplants{icon_state = "plant-05"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aBZ" = (/obj/machinery/light{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 28},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"aCa" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/port) -"aCc" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aCd" = (/obj/machinery/vending/cola/random,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aCe" = (/obj/structure/filingcabinet/employment,/turf/open/floor/wood,/area/lawoffice) -"aCf" = (/obj/machinery/vending/wardrobe/law_wardrobe,/turf/open/floor/wood,/area/lawoffice) -"aCg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aCh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aCi" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 12},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCj" = (/obj/machinery/light/small{dir = 1},/obj/machinery/requests_console{department = "Detective's office"; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCk" = (/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCm" = (/obj/item/storage/briefcase,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCn" = (/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "datboidetective"; name = "Privacy Shutters"; pixel_x = 2; pixel_y = 26},/obj/machinery/light_switch{pixel_x = -8; pixel_y = 27},/obj/structure/filingcabinet/security,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCo" = (/obj/structure/closet/secure_closet/detective,/obj/item/hand_labeler,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aCp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aCq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aCr" = (/obj/machinery/vending/assist,/obj/structure/sign/poster/official/pda_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aCs" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/item/kirbyplants/random,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCt" = (/obj/structure/table,/obj/item/wrench,/obj/item/analyzer,/obj/machinery/requests_console{department = "Tool Storage"; pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCu" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/item/screwdriver{pixel_y = 16},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCv" = (/obj/structure/table,/obj/item/assembly/igniter{pixel_x = -8; pixel_y = -4},/obj/item/assembly/igniter,/obj/machinery/camera{c_tag = "Primary Tool Storage"},/obj/item/assembly/voice,/obj/structure/noticeboard{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCw" = (/obj/structure/table,/obj/item/assembly/signaler,/obj/item/assembly/signaler,/obj/item/multitool,/obj/item/multitool,/obj/machinery/airalarm{pixel_y = 22},/obj/item/flashlight,/obj/item/electronics/airlock,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCx" = (/obj/structure/sign/poster/official/obey{pixel_y = 32},/obj/machinery/disposal/deliveryChute{name = "Crate Disposal Chute"; pixel_y = 6},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southright{name = "Crate Disposal Chute"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aCy" = (/obj/structure/displaycase/captain,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCz" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCC" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Captain's Office"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light_switch{pixel_x = 25},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aCD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"aCE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"aCF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aCG" = (/obj/structure/table,/obj/item/aiModule/supplied/quarantine,/obj/machinery/camera/motion{c_tag = "AI Upload Port"; dir = 4; network = list("aiupload")},/obj/item/aiModule/reset,/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCK" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCM" = (/obj/structure/table,/obj/item/aiModule/supplied/freeform,/obj/machinery/camera/motion{c_tag = "AI Upload Starboard"; dir = 8; network = list("aiupload")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aCN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) -"aCO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aCP" = (/obj/structure/table/wood,/obj/item/pen{layer = 4},/obj/machinery/keycard_auth{pixel_x = -26; pixel_y = 6},/obj/item/paper_bin{layer = 2.9},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCQ" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCR" = (/obj/machinery/holopad,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCS" = (/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCT" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access_txt = "57"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aCW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aCX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aCY" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aCZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aDa" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aDb" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aDc" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aDd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/dorms) -"aDe" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Dorm 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/dorms) -"aDf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aDg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aDh" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Dormitories Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aDi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel/white/corner,/area/crew_quarters/dorms) -"aDj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white/side,/area/crew_quarters/dorms) -"aDk" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 8},/area/crew_quarters/dorms) -"aDl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aDm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aDo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDq" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDr" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aDu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aDv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aDw" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "Tool Storage APC"; pixel_x = -24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) -"aDx" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/storage/primary) -"aDy" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/primary) -"aDz" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/storage/primary) -"aDA" = (/turf/open/floor/plasteel,/area/storage/primary) -"aDB" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aDC" = (/obj/structure/table/wood,/obj/item/storage/lockbox/medal,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aDD" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aDE" = (/obj/structure/chair/comfy/brown,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aDF" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aDG" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aDH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Office"; req_access_txt = "20"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aDI" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aDJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aDK" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aDL" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) -"aDM" = (/obj/machinery/holopad,/obj/machinery/camera/motion{c_tag = "AI Upload Center"; dir = 1; network = list("aiupload")},/obj/item/radio/intercom{broadcasting = 1; frequency = 1447; listening = 0; name = "Station Intercom (AI Private)"; pixel_y = -28},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) -"aDN" = (/obj/machinery/porta_turret/ai{dir = 8},/obj/structure/sign/plaques/kiddie{pixel_x = 32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aDO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"aDP" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"aDQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access_txt = "57"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"aDR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 15},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aDS" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aDT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aDU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aDV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aDW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aDX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aDY" = (/obj/machinery/power/apc{dir = 4; name = "Head of Personnel APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aDZ" = (/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEb" = (/obj/machinery/newscaster{pixel_x = 32; pixel_y = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitories"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aEd" = (/turf/closed/wall,/area/crew_quarters/toilet/restrooms) -"aEe" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEf" = (/obj/structure/urinal{pixel_y = 32},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEg" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEh" = (/obj/structure/urinal{pixel_y = 32},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aEi" = (/obj/effect/landmark/blobstart,/obj/item/toy/beach_ball/holoball,/turf/open/floor/plating,/area/crew_quarters/toilet/restrooms) -"aEj" = (/turf/closed/wall,/area/maintenance/department/cargo) -"aEk" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aEl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aEm" = (/obj/structure/table/wood,/obj/item/flashlight/lamp{pixel_x = 3; pixel_y = 6},/turf/open/floor/carpet,/area/security/detectives_office) -"aEn" = (/obj/structure/table/wood,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/security/detectives_office) -"aEo" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes,/obj/item/lighter,/obj/item/clothing/glasses/hud/security/sunglasses,/turf/open/floor/carpet,/area/security/detectives_office) -"aEp" = (/obj/structure/table/wood,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet,/area/security/detectives_office) -"aEq" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/reagent_containers/food/drinks/bottle/whiskey{pixel_x = -1; pixel_y = 9},/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{pixel_x = 7; pixel_y = 2},/turf/open/floor/carpet,/area/security/detectives_office) -"aEr" = (/obj/machinery/power/apc{dir = 4; name = "Detective's Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aEs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aEt" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/machinery/light{dir = 8},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) -"aEu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/storage/primary) -"aEv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/storage/primary) -"aEw" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/mechanical{pixel_x = -2},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aEx" = (/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/disk/nuclear,/obj/machinery/light{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aEy" = (/obj/structure/table/wood,/obj/item/hand_tele,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aEz" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aEA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aEB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aEC" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Bridge Port Entrance"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aED" = (/obj/structure/table,/obj/item/aiModule/core/full/asimov,/obj/effect/spawner/lootdrop/aimodule_harmless,/obj/item/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right"; dir = 4; icon_state = "right"; name = "Core Modules"; req_access_txt = "20"},/obj/effect/spawner/lootdrop/aimodule_neutral,/obj/item/aiModule/core/full/custom,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/flasher{id = "brigentry"; pixel_x = -28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aEE" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aEF" = (/obj/machinery/computer/upload/ai{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) -"aEG" = (/obj/machinery/flasher{id = "AI"; pixel_y = -6},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload) -"aEH" = (/obj/machinery/computer/upload/borg{dir = 1},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai_upload) -"aEI" = (/obj/structure/table,/obj/item/aiModule/supplied/oxygen,/obj/item/aiModule/zeroth/oneHuman,/obj/machinery/door/window{dir = 8; name = "High-Risk Modules"; req_access_txt = "20"},/obj/item/aiModule/reset/purge,/obj/effect/spawner/lootdrop/aimodule_harmful,/obj/item/aiModule/supplied/protectStation,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/flasher{id = "brigentry"; pixel_x = 28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai_upload) -"aEJ" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Bridge Starboard Entrance"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/bridge) -"aEK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"aEL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aEM" = (/obj/item/kirbyplants{icon_state = "plant-24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aEN" = (/obj/structure/table/wood,/obj/item/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/silver_ids,/obj/item/storage/box/ids,/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"aEO" = (/obj/machinery/computer/secure_data{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aEP" = (/obj/machinery/computer/card{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aEQ" = (/obj/structure/chair/office/dark,/obj/machinery/button/flasher{id = "hopflash"; pixel_x = 38; pixel_y = -25},/obj/machinery/button/door{id = "hop"; name = "Privacy Shutters Control"; pixel_x = 25; pixel_y = -26; req_access_txt = "28"},/obj/machinery/button/door{id = "hopqueue"; name = "Queue Shutters Control"; pixel_x = 25; pixel_y = -36; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = 38; pixel_y = -35},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aER" = (/obj/structure/table/wood,/obj/item/stamp/hop{pixel_x = -4; pixel_y = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/item/paper_bin{layer = 2.9},/turf/open/floor/carpet,/area/crew_quarters/heads/hop) -"aES" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Vault"; dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aET" = (/turf/closed/wall,/area/storage/emergency/starboard) -"aEU" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/item/storage/toolbox,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/storage/emergency/starboard) -"aEW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aEZ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFb" = (/obj/machinery/light_switch{pixel_y = 25},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFc" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFe" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFf" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFg" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFi" = (/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFj" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "MiniSat Entrance"; network = list("minisat")},/turf/open/space,/area/space/nearstation) -"aFk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/minor/bowler_or_that,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"aFm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) -"aFn" = (/turf/open/floor/carpet,/area/security/detectives_office) -"aFo" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/effect/landmark/start/detective,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office) -"aFp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/carpet,/area/security/detectives_office) -"aFr" = (/obj/machinery/camera{c_tag = "Fore Primary Hallway Entrance"; dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aFs" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = -7},/obj/item/electronics/apc,/obj/item/t_scanner,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/storage/primary) -"aFt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aFu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"aFv" = (/obj/structure/table,/obj/item/weldingtool,/obj/item/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"aFw" = (/obj/structure/table/wood,/obj/item/camera,/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aFx" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/heads/captain) -"aFy" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aFz" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aFA" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hop"; name = "Privacy Shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) -"aFB" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure"; dir = 1; icon_state = "rightsecure"; name = "Head of Personnel's Desk"; req_access_txt = "57"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2; name = "Reception Window"},/obj/machinery/door/poddoor/preopen{id = "hop"; name = "privacy shutters"},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) -"aFC" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aFD" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/item/taperecorder,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aFE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/storage/emergency/starboard) -"aFF" = (/obj/item/storage/box/lights/mixed,/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Starboard Emergency Storage APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/emergency/starboard) -"aFG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFH" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFK" = (/obj/machinery/door/airlock{name = "Unisex Showers"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFM" = (/obj/machinery/shower{dir = 8},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aFN" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFO" = (/obj/effect/decal/cleanable/vomit/old,/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFP" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFQ" = (/obj/structure/table,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/glass/bowl,/obj/item/reagent_containers/food/condiment/rice,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aFU" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"aFV" = (/obj/machinery/door/airlock/maintenance{name = "Detective Maintenance"; req_access_txt = "4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aFW" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aFX" = (/obj/machinery/computer/med_data{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) -"aFY" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) -"aGa" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aGb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aGc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aGd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aGe" = (/obj/structure/rack,/obj/item/wirecutters,/obj/item/flashlight,/obj/item/gps,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGf" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGg" = (/obj/structure/table,/obj/item/crowbar,/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/gloves/color/fyellow,/obj/item/assembly/timer,/obj/item/radio,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGh" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGi" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGj" = (/obj/structure/disposalpipe/junction/flip,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"aGk" = (/obj/machinery/vending/boozeomat/pubby_captain,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aGl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aGm" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/computer/arcade{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"aGn" = (/obj/item/kirbyplants/photosynthetic{layer = 3.1},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/central) -"aGo" = (/obj/structure/lattice,/obj/structure/sign/logo{pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGp" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign2"; pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGq" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign3"; pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGr" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign4"; pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGs" = (/obj/structure/lattice,/obj/structure/sign/logo{icon_state = "nanotrasen_sign5"; pixel_y = 32},/turf/open/space,/area/space/nearstation) -"aGt" = (/obj/machinery/vending/cola,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGu" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGv" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGw" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGx" = (/obj/machinery/flasher{id = "hopflash"; pixel_x = 28; pixel_y = -28},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGy" = (/obj/structure/table,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGz" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/starboard) -"aGB" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency/starboard) -"aGC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGF" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGH" = (/obj/machinery/camera{c_tag = "Dormitory Toilets"; dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGI" = (/obj/machinery/shower{dir = 4},/obj/structure/sign/poster/official/no_erp{pixel_x = -32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGJ" = (/obj/machinery/shower{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aGK" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/cookie{desc = "It has a distinctly eldritch taste to it."; name = "grandma's cookie"},/obj/item/cigbutt,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGL" = (/obj/structure/chair/stool,/obj/item/clothing/suit/apron/chef,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGM" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGN" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGO" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGP" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aGU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGV" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGX" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plating,/area/storage/primary) -"aGY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plasteel,/area/storage/primary) -"aGZ" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plating,/area/storage/primary) -"aHb" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aHc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aHd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aHe" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aHf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/hallway/primary/central) -"aHg" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aHh" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/effect/turf_decal/loading_area{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/primary/central) -"aHj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/primary/central) -"aHk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/central) -"aHl" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue"; name = "HoP Queue Shutters"},/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHn" = (/obj/machinery/door/airlock/abandoned{name = "Starboard Emergency Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/starboard) -"aHo" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHp" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHq" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHr" = (/obj/machinery/shower{dir = 4},/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aHs" = (/obj/structure/closet/crate,/obj/item/cultivator,/obj/item/shovel/spade,/obj/item/storage/bag/plants/portaseeder,/obj/item/seeds/wheat/rice,/obj/item/seeds/replicapod,/obj/item/seeds/carrot,/obj/item/seeds/tomato,/obj/item/reagent_containers/glass/bottle/nutrient/ez,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aHt" = (/obj/effect/decal/cleanable/egg_smudge,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aHu" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aHz" = (/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) -"aHA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"aHC" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aHE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorms"; location = "Tool"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/status_display/evac{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHR" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHX" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIc" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aId" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIe" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"aIi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIj" = (/obj/machinery/vending/cigarette,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/sign/departments/restroom{pixel_x = 32},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/central) -"aIk" = (/obj/machinery/power/apc{dir = 4; name = "Dormitory Bathrooms APC"; pixel_x = 26},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aIl" = (/obj/structure/toilet/secret/low_loot{dir = 8},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aIp" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aIq" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/lawyer,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aIr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space,/area/solar/port) -"aIC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aIH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aIL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Dorms"; location = "Tool"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIN" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIO" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIT" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIX" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/observer_start,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIY" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aIZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJa" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/junction/flip{dir = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJd" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Robo"; location = "HoP"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJe" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJh" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJi" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=HoP"; location = "Dorms"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/hallway/primary/central) -"aJn" = (/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aJo" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/table,/obj/structure/bedsheetbin/towel,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aJp" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aJq" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"aJr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) -"aJs" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aJt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"aJv" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aJw" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/chaplain,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aJD" = (/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Departure Lounge Fore"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aJE" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aJF" = (/obj/structure/chair{dir = 8},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/secondary/exit/departure_lounge"; dir = 1; name = "Departure Lounge APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aJG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = -24},/obj/structure/sign/directions/medical{pixel_x = 32; pixel_y = -40},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJH" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJM" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Bathroom"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJT" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJW" = (/obj/machinery/camera{c_tag = "Central Primary Hallway EVA"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJX" = (/obj/structure/sign/directions/security{dir = 8; pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = -32},/obj/structure/sign/directions/science{pixel_x = -32; pixel_y = -40},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aJZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKa" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Dormitory"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKe" = (/obj/machinery/camera{c_tag = "Dormitories Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKg" = (/obj/item/kirbyplants{icon_state = "plant-04"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/primary/central) -"aKh" = (/obj/machinery/light_switch{pixel_x = -25},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKi" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKj" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Dormitory Cyborg Recharging Station"},/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"aKk" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/oil,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKo" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"aKp" = (/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKq" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKr" = (/obj/structure/closet/crate/coffin,/obj/item/toy/figure/curator,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aKy" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"aKz" = (/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"aKA" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aKB" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"aKD" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aKE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aKG" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aKH" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aKI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aKJ" = (/turf/closed/wall,/area/storage/art) -"aKK" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/art) -"aKL" = (/obj/machinery/door/airlock/public/glass{name = "Art Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/storage/art) -"aKM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/cafeteria/lunchroom) -"aKN" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/cafeteria/lunchroom) -"aKO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Lunchroom"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/cafeteria/lunchroom) -"aKP" = (/turf/closed/wall,/area/crew_quarters/cafeteria/lunchroom) -"aKQ" = (/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) -"aKR" = (/obj/machinery/door/airlock{id_tag = "Potty1"; name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aKS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/toilet/auxiliary) -"aKT" = (/turf/closed/wall,/area/maintenance/department/crew_quarters/bar) -"aKU" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aKV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/hallway/primary/central) -"aKY" = (/turf/closed/wall/r_wall,/area/storage/eva) -"aKZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/eva) -"aLa" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter"; name = "EVA Storage Shutters"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/eva) -"aLb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "EVA Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/eva) -"aLc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/teleporter) -"aLd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command/glass{name = "Teleporter"; req_access_txt = "17"},/turf/open/floor/plasteel,/area/teleporter) -"aLe" = (/turf/closed/wall,/area/security/checkpoint/supply) -"aLf" = (/turf/closed/wall,/area/quartermaster/office) -"aLg" = (/turf/closed/wall,/area/quartermaster/storage) -"aLh" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance"; req_access_txt = "31"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLi" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLj" = (/obj/effect/spawner/lootdrop/grille_or_trash,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLk" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLl" = (/obj/item/storage/box/mousetraps,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aLm" = (/turf/closed/wall,/area/maintenance/disposal) -"aLn" = (/obj/machinery/door/poddoor{id = "trash"; name = "disposal bay door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/disposal) -"aLo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) -"aLu" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aLv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aLw" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/art) -"aLx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXnineteen,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aLy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aLz" = (/obj/machinery/photocopier,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aLA" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/friedegg,/obj/item/kitchen/fork,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aLB" = (/obj/structure/chair{dir = 8; name = "Defense"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aLC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aLD" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/vending/cola,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aLE" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/landmark/xeno_spawn,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aLF" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aLG" = (/obj/structure/urinal{pixel_y = 32},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/door{id = "Potty1"; name = "Bathroom Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 4; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light_switch{pixel_x = 36; pixel_y = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aLH" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aLI" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aLK" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aLL" = (/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aLQ" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/button/door{id = "evashutter"; name = "EVA Shutters Control"; pixel_x = -24; req_access_txt = "18"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aLR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aLS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aLT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aLU" = (/obj/structure/closet/crate/rcd,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aLV" = (/turf/closed/wall,/area/storage/eva) -"aLW" = (/obj/machinery/power/apc{dir = 8; name = "Teleporter APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/airalarm{pixel_y = 22},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/teleporter) -"aLX" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/teleporter) -"aLY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/teleporter) -"aLZ" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/teleporter) -"aMa" = (/obj/structure/closet/crate,/obj/machinery/button/door{id = "teleshutter"; name = "Teleporter Shutters Control"; pixel_x = 25; pixel_y = -5; req_access_txt = "17"},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) -"aMb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMd" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aMe" = (/obj/machinery/computer/security/mining,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Cargo Security Post"},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aMf" = (/obj/machinery/computer/secure_data,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aMg" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating,/area/quartermaster/sorting) -"aMh" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMi" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/quartermaster/sorting) -"aMj" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMk" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMl" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMm" = (/obj/machinery/conveyor{dir = 4; id = "packageSort2"},/obj/structure/plasticflaps,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMn" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) -"aMo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/quartermaster/warehouse) -"aMp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMq" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMr" = (/obj/structure/closet/crate,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMt" = (/obj/structure/closet/cardboard,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Cargo Warehouse"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMu" = (/obj/item/cigbutt/cigarbutt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMv" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 4; name = "Cargo Warehouse APC"; pixel_x = 26},/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aMw" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMx" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMy" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMz" = (/obj/structure/grille/broken,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/crowbar,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMA" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMB" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aMD" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aME" = (/obj/machinery/button/massdriver{id = "trash"; pixel_y = 32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) -"aMF" = (/obj/machinery/conveyor_switch/oneway{id = "garbagestacked"; name = "disposal conveyor"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) -"aMG" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/disposal) -"aMH" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aML" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aMR" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMS" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMT" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aMU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/storage/art) -"aMV" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/storage/toolbox/artistic{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/artistic{pixel_x = -3},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aMW" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aMX" = (/obj/structure/table,/obj/item/airlock_painter,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Art Storage APC"; pixel_x = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aMY" = (/obj/structure/chair{dir = 1},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aMZ" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Lunchroom"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aNa" = (/obj/structure/cable,/obj/machinery/power/apc{name = "Cafeteria APC"; pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aNb" = (/obj/machinery/vending/sustenance{contraband = list(/obj/item/kitchen/knife = 6, /obj/item/reagent_containers/food/drinks/coffee = 12); desc = "A vending machine which vends food."; product_ads = "Sufficiently healthy."},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/cafeteria/lunchroom) -"aNc" = (/obj/structure/toilet/secret/low_loot{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aNd" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aNe" = (/obj/structure/cable,/obj/machinery/power/apc/highcap/five_k{name = "Auxiliary Restrooms APC"; pixel_y = -24},/obj/item/soap/nanotrasen,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/auxiliary) -"aNf" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aNg" = (/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aNh" = (/obj/item/extinguisher,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aNi" = (/obj/structure/grille/broken,/obj/item/crowbar,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aNj" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aNm" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aNp" = (/obj/structure/rack,/obj/item/clothing/shoes/magboots{pixel_x = -4; pixel_y = 3},/obj/item/clothing/shoes/magboots,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aNq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/eva) -"aNr" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aNs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/eva) -"aNt" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide/eva,/obj/item/tank/jetpack/carbondioxide/eva{pixel_x = -4; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aNu" = (/obj/structure/closet/crate,/obj/item/melee/flyswatter,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) -"aNv" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/teleporter) -"aNw" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/teleporter) -"aNx" = (/turf/open/floor/plasteel,/area/teleporter) -"aNy" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) -"aNz" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) -"aNA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aNB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aNC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/supply) -"aND" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/book/manual/wiki/security_space_law,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aNE" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/depsec/supply,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aNF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aNH" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNJ" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNK" = (/obj/structure/table,/obj/item/destTagger,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNL" = (/obj/item/stack/wrapping_paper{pixel_x = 3; pixel_y = 4},/obj/item/stack/packageWrap{pixel_x = -1; pixel_y = -1},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNM" = (/obj/item/storage/box,/obj/item/storage/box,/obj/item/storage/box,/obj/item/hand_labeler,/obj/item/hand_labeler,/obj/structure/table,/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aNN" = (/obj/structure/closet/crate/freezer,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aNO" = (/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aNP" = (/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aNQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aNR" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aNT" = (/obj/machinery/mass_driver{dir = 1; id = "trash"},/obj/machinery/button/massdriver{id = "trash"; pixel_x = -28},/turf/open/floor/plating,/area/maintenance/disposal) -"aNU" = (/obj/machinery/mineral/stacking_machine{input_dir = 8; output_dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aNV" = (/obj/machinery/conveyor{dir = 4; id = "garbagestacked"},/turf/open/floor/plating,/area/maintenance/disposal) -"aNX" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aNY" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) -"aOf" = (/obj/structure/chair,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"aOg" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"aOh" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"aOk" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aOm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/wrench,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aOs" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) -"aOt" = (/obj/structure/table,/obj/item/instrument/glockenspiel{pixel_y = 3},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aOu" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/storage/crayons,/obj/machinery/light,/obj/machinery/camera{c_tag = "Art Storage"; dir = 1},/obj/item/hand_labeler,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aOv" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 20; layer = 3.1},/obj/item/stack/sheet/glass{amount = 20; layer = 3.2},/obj/item/stack/rods{amount = 20; layer = 3.3},/obj/item/canvas/twentythreeXtwentythree,/obj/item/canvas/nineteenXnineteen,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/storage/art) -"aOw" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aOx" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aOy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aOz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aOA" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aOB" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "EVA"; pixel_x = -32},/obj/machinery/camera{c_tag = "EVA Storage"; dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aOC" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel,/area/storage/eva) -"aOD" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aOE" = (/obj/structure/table,/obj/item/hand_tele,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Teleporter"; dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aOF" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/teleporter) -"aOG" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) -"aOH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/teleporter) -"aOI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/teleporter) -"aOJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "teleshutter"; name = "Teleporter Shutters"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter) -"aOK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOL" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aON" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/checkpoint/supply) -"aOO" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aOP" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aOQ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aOR" = (/obj/machinery/door/airlock/security/glass{name = "Cargo Security Post"; req_access_txt = "63"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aOS" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aOT" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aOU" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aOV" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) -"aOW" = (/obj/machinery/door/window/eastleft{dir = 8; icon_state = "right"; name = "Mail"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/sorting) -"aOX" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) -"aOY" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aOZ" = (/obj/item/stack/sheet/cardboard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aPa" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aPb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aPc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aPd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/storage) -"aPf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/shard,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aPg" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aPi" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) -"aPn" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aPo" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit/departure_lounge) -"aPq" = (/obj/machinery/light{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Departure Lounge Starboard"; dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aPt" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/mining/aux_base) -"aPv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aPw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPx" = (/obj/machinery/light/small{dir = 1},/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPy" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aPz" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aPA" = (/obj/item/trash/cheesie,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPB" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPC" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/effect/spawner/lootdrop/gloves,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPD" = (/obj/machinery/power/apc{dir = 1; name = "Bar Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPE" = (/turf/closed/wall,/area/crew_quarters/bar) -"aPF" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPG" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aPH" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aPI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aPJ" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/storage/eva) -"aPK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/storage/eva) -"aPL" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aPM" = (/obj/structure/table,/obj/item/beacon,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPN" = (/obj/machinery/computer/teleporter{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPO" = (/obj/machinery/teleport/station,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPP" = (/obj/machinery/teleport/hub,/obj/machinery/light,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPQ" = (/obj/structure/closet/crate,/obj/item/crowbar,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/teleporter) -"aPR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aPT" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Security Post - Cargo APC"; pixel_x = -24},/obj/structure/closet/secure_closet/security/cargo,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aPU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aPV" = (/obj/structure/filingcabinet/security,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aPW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/office) -"aPX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aPY" = (/turf/open/floor/plasteel,/area/quartermaster/office) -"aPZ" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aQa" = (/obj/structure/disposalpipe/sorting/wrap{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aQb" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/camera{c_tag = "Cargo Mailroom"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aQc" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQd" = (/obj/item/flashlight,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQe" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQf" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQg" = (/obj/structure/closet/crate/medical,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aQj" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 2; sortType = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aQk" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/disposal) -"aQn" = (/obj/machinery/conveyor_switch/oneway{id = "garbage"; name = "disposal conveyor"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aQo" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"aQp" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal) -"aQr" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aQs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aQt" = (/obj/machinery/status_display/evac,/turf/closed/wall,/area/hallway/secondary/exit/departure_lounge) -"aQu" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/ywflowers,/obj/structure/window/reinforced/fulltile,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aQv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aQw" = (/obj/machinery/computer/shuttle/mining,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"aQx" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/pipe_dispenser,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"aQz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aQB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aQC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aQD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aQE" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQF" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQH" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aQI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aQJ" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"aQK" = (/obj/structure/grille,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQL" = (/obj/structure/grille/broken,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQM" = (/obj/item/reagent_containers/glass/bucket,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aQR" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQS" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar) -"aQT" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken6"},/area/crew_quarters/bar) -"aQU" = (/obj/machinery/vending/coffee,/obj/machinery/camera{c_tag = "Bar Backroom"},/turf/open/floor/wood,/area/crew_quarters/bar) -"aQV" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/obj/item/stack/cable_coil,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/wood,/area/crew_quarters/bar) -"aQW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQX" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/broken_bottle,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aQY" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aQZ" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/crowbar,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{name = "EVA Storage APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/storage/eva) -"aRa" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/eva) -"aRb" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/storage/eva) -"aRc" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/rglass{amount = 50},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/eva) -"aRd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aRe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/departments/cargo{pixel_x = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aRf" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/supply) -"aRg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Cargo Security Post"; req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"aRh" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRi" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRj" = (/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRk" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/power/apc/highcap/fifteen_k{dir = 4; name = "Delivery Office APC"; pixel_x = 28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aRm" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/obj/item/reagent_containers/food/snacks/donut,/turf/open/floor/plating,/area/quartermaster/sorting) -"aRn" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aRo" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aRp" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse"; name = "warehouse shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aRq" = (/obj/structure/closet/crate/internals,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"aRs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aRt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/disposal) -"aRu" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aRv" = (/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aRw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aRy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"aRz" = (/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aRB" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aRC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aRD" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aRE" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aRF" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aRG" = (/obj/structure/rack,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/assault_pod/mining,/obj/machinery/camera{c_tag = "Auxillary Base Construction"; dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/computer/security/telescreen/auxbase{dir = 8; pixel_x = 30},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"aRH" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/hallway/primary/central) -"aRI" = (/obj/machinery/light{dir = 4},/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"aRJ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRK" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRL" = (/turf/closed/wall,/area/hydroponics) -"aRM" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance"; req_access_txt = "35"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRN" = (/turf/closed/wall,/area/crew_quarters/kitchen) -"aRO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"aRP" = (/obj/structure/plasticflaps/opaque,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"aRQ" = (/obj/item/gun/ballistic/revolver/doublebarrel{pixel_y = 11},/obj/structure/table/wood,/obj/item/coin/silver,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c100,/turf/open/floor/wood,/area/crew_quarters/bar) -"aRR" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/chair/wood/normal{dir = 8},/obj/item/clothing/under/rank/civilian/janitor/maid,/turf/open/floor/wood{icon_state = "wood-broken"},/area/crew_quarters/bar) -"aRS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"aRT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar) -"aRU" = (/obj/machinery/door/airlock/maintenance{name = "Bar Storage Maintenance"; req_access_txt = "25"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "EVA Maintenance"; req_access_txt = "18"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRY" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aRZ" = (/obj/item/trash/tray,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSa" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/grown/bananapeel,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSb" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/seeds/banana,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSc" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aSd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aSe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aSf" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1; name = "Delivery Desk"; req_access_txt = "50"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aSg" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/mining/glass{name = "Mailroom"; req_one_access_txt = "48;50"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"aSh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/quartermaster/sorting) -"aSi" = (/obj/machinery/button/door{id = "qm_warehouse"; name = "Warehouse Door Control"; pixel_x = -24; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aSl" = (/obj/machinery/power/apc{dir = 4; name = "Cargo Maintenance APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aSm" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/disposal) -"aSn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"aSo" = (/obj/machinery/power/apc{dir = 4; name = "Disposal APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) -"aSu" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/wirecutters,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"aSv" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced{dir = 8},/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aSw" = (/obj/item/statuebust,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aSx" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aSz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSA" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel,/area/hydroponics) -"aSB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"aSC" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"aSE" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/camera{c_tag = "Hydroponics Storage"},/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel,/area/hydroponics) -"aSF" = (/obj/machinery/chem_master/condimaster,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"aSG" = (/obj/structure/table,/obj/item/book/manual/hydroponics_pod_people,/obj/item/paper/guides/jobs/hydroponics,/obj/item/reagent_containers/glass/bottle/mutagen,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel,/area/hydroponics) -"aSH" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen) -"aSI" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aSJ" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aSK" = (/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aSL" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8"; freq = 1400; location = "Kitchen"},/obj/machinery/door/window/southleft{dir = 8; name = "Kitchen Delivery"; req_access_txt = "28"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"aSM" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/bar) -"aSN" = (/obj/item/assembly/mousetrap,/obj/item/storage/box/mousetraps,/turf/open/floor/wood{icon_state = "wood-broken6"},/area/crew_quarters/bar) -"aSO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood,/area/crew_quarters/bar) -"aSP" = (/turf/open/floor/wood,/area/crew_quarters/bar) -"aSQ" = (/obj/effect/landmark/xeno_spawn,/obj/item/storage/box/beanbag,/turf/open/floor/wood,/area/crew_quarters/bar) -"aSR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/weldingtool,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSS" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aST" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSV" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSW" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aSX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aSY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aSZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aTb" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) -"aTf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/office) -"aTi" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTm" = (/turf/open/floor/plasteel,/area/quartermaster/storage) -"aTn" = (/obj/machinery/light{dir = 1},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plating,/area/quartermaster/storage) -"aTp" = (/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aTq" = (/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aTr" = (/obj/machinery/door/poddoor{id = "QMLoaddoor"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aTs" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"aTu" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aTv" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aTw" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aTx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aTy" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access"; req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aTz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"aTA" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal) -"aTB" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/disposal) -"aTC" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"aTD" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space,/area/solar/starboard) -"aTE" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "starboardsolar"; name = "Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"aTH" = (/obj/docking_port/stationary{dir = 8; dwidth = 4; height = 15; id = "emergency_home"; name = "PubbyStation emergency evac bay"; width = 20},/turf/open/space/basic,/area/space) -"aTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aTK" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aTL" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aTM" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/floor/grass,/area/hallway/secondary/exit/departure_lounge) -"aTO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Central Primary Hallway Escape"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aTP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aTQ" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel,/area/hydroponics) -"aTR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"aTS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aTT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aTU" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics) -"aTW" = (/obj/structure/table,/obj/item/reagent_containers/spray/plantbgone{pixel_y = 3},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/watertank,/turf/open/floor/plasteel,/area/hydroponics) -"aTX" = (/obj/structure/kitchenspike,/obj/item/assembly/mousetrap,/obj/item/reagent_containers/food/snacks/deadmouse,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aTY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aTZ" = (/obj/machinery/camera{c_tag = "Kitchen Cold Room"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aUa" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/item/crowbar,/obj/item/wrench,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aUb" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/bar) -"aUc" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar) -"aUd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/bar) -"aUe" = (/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/wood{icon_state = "wood-broken5"},/area/crew_quarters/bar) -"aUf" = (/turf/closed/wall,/area/crew_quarters/theatre) -"aUg" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aUi" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Cargo"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUj" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUl" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUm" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUo" = (/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "31;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) -"aUp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aUq" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aUs" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aUt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUw" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aUy" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/storage) -"aUz" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/storage) -"aUA" = (/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Bay"; width = 12},/turf/open/space/basic,/area/space) -"aUB" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aUC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aUD" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard) -"aUG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aUH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aUI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"aUJ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/central) -"aUK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aUO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aUP" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aUQ" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hydroponics) -"aUR" = (/obj/machinery/door/window/eastright{name = "Hydroponics Delivery"; req_access_txt = "35"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 1; freq = 1400; location = "Hydroponics"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hydroponics) -"aUS" = (/obj/structure/closet/crate/hydroponics,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/reagent_containers/glass/bucket,/obj/item/reagent_containers/glass/bucket,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/hydroponics) -"aUT" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/vending/wardrobe/hydro_wardrobe,/turf/open/floor/plasteel,/area/hydroponics) -"aUU" = (/obj/machinery/power/apc{name = "Hydroponics APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/hydroponics) -"aUW" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel,/area/hydroponics) -"aUX" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aUY" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aUZ" = (/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVa" = (/obj/machinery/holopad,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVb" = (/obj/machinery/light{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVc" = (/obj/machinery/door/window/southleft{name = "Bar Delivery"; req_access_txt = "25"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Bar"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aVd" = (/obj/machinery/door/airlock{name = "Bar Storage"; req_access_txt = "25"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/newscaster{pixel_x = -32; pixel_y = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVg" = (/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/table,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVh" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/bottle/patron{pixel_x = -5; pixel_y = 16},/obj/item/reagent_containers/food/drinks/bottle/cognac{pixel_x = -10; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/grappa{pixel_x = 10; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/vodka{pixel_x = 2; pixel_y = 4},/obj/machinery/light_switch{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVi" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/bottle/hcider{layer = 3.1; pixel_x = -6; pixel_y = 8},/obj/item/reagent_containers/food/drinks/bottle/wine{layer = 3.1; pixel_x = 3; pixel_y = 5},/obj/item/reagent_containers/food/drinks/bottle/rum{layer = 3.2; pixel_x = -15; pixel_y = 4},/obj/item/reagent_containers/food/drinks/bottle/lizardwine{layer = 3.1; pixel_x = 13; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/tequila{layer = 3.2; pixel_x = 13; pixel_y = 7},/obj/item/reagent_containers/food/drinks/shaker{pixel_x = 1; pixel_y = 13},/obj/item/reagent_containers/food/drinks/bottle/gin{pixel_x = -10; pixel_y = 15},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_x = 28; req_access_txt = "25"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aVk" = (/obj/structure/table/wood,/obj/machinery/airalarm{pixel_y = 22},/obj/item/instrument/accordion{pixel_y = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aVl" = (/obj/structure/dresser,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/contraband/clown{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aVm" = (/obj/machinery/vending/autodrobe,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aVn" = (/obj/machinery/door/airlock/maintenance{name = "Theatre Maintenance"; req_access_txt = "46"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"aVo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aVp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVs" = (/obj/structure/plasticflaps/opaque,/obj/machinery/conveyor{dir = 4; id = "cargodeliver"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) -"aVt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVv" = (/obj/machinery/light{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/conveyor_switch{id = "cargodeliver"},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aVw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #1"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVy" = (/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVz" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVB" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/obj/machinery/camera{c_tag = "Cargo Supply Dock"; dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aVE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aVG" = (/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aVH" = (/obj/structure/closet/l3closet/scientist,/obj/item/book/manual/wiki/chemistry,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aVI" = (/obj/structure/closet,/obj/item/canvas/twentythreeXnineteen,/obj/item/canvas/nineteenXnineteen,/obj/item/canvas/twentythreeXtwentythree,/obj/item/storage/crayons,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aVM" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aVN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aVO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aVP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aVQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aVR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aVS" = (/turf/closed/wall,/area/janitor) -"aVT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/janitor) -"aVU" = (/obj/machinery/door/window/eastright{dir = 2; name = "Janitor Delivery"; req_access_txt = "26"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Janitor"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) -"aVV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"aVW" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVX" = (/obj/machinery/power/apc{name = "Kitchen APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aVZ" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/item/reagent_containers/food/snacks/grown/potato,/obj/item/reagent_containers/food/snacks/grown/potato,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aWa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/kitchen) -"aWb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWd" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/carbon/monkey/punpun,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWe" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/camera{c_tag = "Bar Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWm" = (/obj/structure/disposalpipe/segment,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWn" = (/obj/machinery/power/apc{dir = 8; name = "Theatre APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWo" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/mime,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWq" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWr" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/light_switch{pixel_x = 24; pixel_y = 24},/obj/structure/mirror{pixel_x = 28; pixel_y = -2},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aWs" = (/obj/machinery/computer/cargo/request{dir = 4},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) -"aWt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) -"aWu" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) -"aWv" = (/obj/machinery/door/firedoor,/obj/machinery/mineral/ore_redemption{input_dir = 4; output_dir = 8},/turf/open/floor/plasteel/dark,/area/quartermaster/office) -"aWw" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aWx" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #2"},/obj/machinery/camera{c_tag = "Cargo Bay"; dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aWy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aWz" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aWA" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aWB" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage) -"aWE" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"aWF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aWI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/camera{c_tag = "Departure Lounge Hallway"; dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aWJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aWK" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"aWM" = (/obj/machinery/washing_machine,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) -"aWN" = (/obj/machinery/camera{c_tag = "Custodial Quarters"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light/small{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) -"aWO" = (/obj/structure/bed,/obj/effect/landmark/start/janitor,/obj/item/bedsheet/purple,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) -"aWP" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aWQ" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aWR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/requests_console{department = "Hydroponics"; departmentType = 2; pixel_y = 30},/turf/open/floor/plasteel,/area/hydroponics) -"aWS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/sorting/mail{sortType = 21},/turf/open/floor/plasteel,/area/hydroponics) -"aWT" = (/obj/machinery/light_switch{pixel_x = -4; pixel_y = 30},/obj/structure/sink/kitchen{name = "utility sink"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aWU" = (/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aWV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aWW" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aWX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aWY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXc" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXd" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Bar APC"; pixel_x = 27},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXh" = (/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aXk" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Theatre Storage"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXm" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 18},/obj/machinery/requests_console{department = "Theatre"; name = "theatre RC"; pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/clown,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXo" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/cardboard_cutout,/obj/structure/mirror{pixel_x = 28; pixel_y = -2},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/theatre) -"aXp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/theatre) -"aXq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXr" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/cargo{pixel_x = 32},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXs" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 2; name = "Cargo Desk"; req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aXt" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 2; name = "Cargo Desk"; req_access_txt = "50"},/turf/open/floor/plasteel,/area/quartermaster/office) -"aXu" = (/obj/machinery/door/firedoor,/obj/machinery/autolathe,/turf/open/floor/plasteel/dark,/area/quartermaster/office) -"aXv" = (/obj/machinery/newscaster{pixel_x = 32},/obj/machinery/camera{c_tag = "Cargo Foyer"; dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aXw" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #3"},/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aXx" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aXy" = (/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aXz" = (/obj/machinery/door/poddoor{id = "QMLoaddoor2"; name = "supply dock loading door"},/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aXA" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "QMLoad2"},/turf/open/floor/plating,/area/quartermaster/storage) -"aXB" = (/obj/structure/sign/departments/evac,/turf/closed/wall,/area/security/checkpoint/customs) -"aXC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aXF" = (/obj/structure/chair{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aXG" = (/obj/structure/table,/obj/effect/holodeck_effect/cards{pixel_y = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"aXH" = (/turf/closed/wall/r_wall,/area/security/checkpoint/customs) -"aXI" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "papersplease"; name = "security shutters"},/turf/open/floor/plating,/area/security/checkpoint/customs) -"aXJ" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westright{dir = 2; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/door/poddoor/preopen{id = "papersplease"; name = "privacy shutters"},/obj/item/folder/red,/obj/item/pen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aXK" = (/turf/closed/wall,/area/security/checkpoint/customs) -"aXL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/janitor) -"aXN" = (/obj/structure/bedsheetbin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) -"aXO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) -"aXP" = (/obj/structure/table,/obj/item/clothing/under/costume/maid,/obj/item/key/janitor,/obj/item/grenade/clusterbuster/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) -"aXQ" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aXR" = (/obj/item/reagent_containers/glass/bucket,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aXS" = (/turf/open/floor/plasteel,/area/hydroponics) -"aXT" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hydroponics) -"aXU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"aXV" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aXW" = (/obj/machinery/plantgenes{pixel_y = 6},/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aXX" = (/obj/machinery/hydroponics/constructable,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aXY" = (/obj/machinery/hydroponics/constructable,/obj/structure/sign/departments/botany{pixel_y = 32},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aXZ" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aYa" = (/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen) -"aYb" = (/obj/machinery/door/airlock{name = "Bar Access"; req_access_txt = "28"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"aYd" = (/obj/machinery/door/airlock{name = "Service Access"; req_one_access_txt = "25; 26; 28; 35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYe" = (/obj/structure/table/reinforced,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 10},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYf" = (/obj/structure/table/reinforced,/obj/item/book/manual/wiki/barman_recipes,/obj/item/reagent_containers/rag,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYg" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYh" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/instrument/guitar,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYi" = (/obj/structure/table/reinforced,/obj/structure/disposalpipe/segment,/obj/item/kirbyplants{icon_state = "plant-18"; pixel_y = 10},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYj" = (/obj/machinery/door/airlock{name = "Theatre Storage"; req_access_txt = "46"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aYk" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aYl" = (/obj/structure/table/wood,/obj/item/soap,/obj/structure/table/wood,/obj/item/bikehorn,/obj/item/toy/cattoy,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aYm" = (/obj/structure/closet/crate/wooden/toy,/obj/item/lipstick/random,/obj/item/clothing/gloves/color/rainbow,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/theatre) -"aYn" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -32},/obj/machinery/computer/cargo{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYo" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYp" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/cargo_technician,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYq" = (/obj/item/stamp{pixel_x = -3; pixel_y = 3},/obj/item/stamp/denied{pixel_x = 4; pixel_y = -2},/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYr" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYu" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aYv" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "QM #4"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYB" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "QMLoaddoor2"; layer = 4; name = "Loading Doors"; pixel_x = 24; pixel_y = -8},/obj/machinery/button/door{id = "QMLoaddoor"; layer = 4; name = "Loading Doors"; pixel_x = 24; pixel_y = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aYC" = (/obj/structure/grille/broken,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aYD" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/effect/spawner/lootdrop/maintenance,/obj/item/storage/box/matches,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aYE" = (/obj/structure/table,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aYF" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 10},/obj/item/stack/rods{amount = 25},/obj/item/shard{icon_state = "small"},/obj/item/light/bulb,/turf/open/floor/plating,/area/maintenance/department/cargo) -"aYG" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry) -"aYH" = (/obj/machinery/computer/security{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aYI" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aYJ" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aYK" = (/obj/structure/closet/secure_closet/security,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aYL" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aYM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Quarters"; req_access_txt = "26"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/janitor) -"aYN" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aYO" = (/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aYP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"aYQ" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/hydroponics) -"aYR" = (/obj/machinery/vending/dinnerware,/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYS" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYT" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYU" = (/obj/machinery/processor,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aYX" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = -2},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"aYY" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aYZ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool/bar,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/landmark/start/assistant,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZg" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aZh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZj" = (/obj/machinery/status_display/supply{pixel_x = -32},/obj/machinery/computer/bounty{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aZk" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) -"aZl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Cargo Office"; req_access_txt = "50"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"aZm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"aZn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"aZo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZq" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZs" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"aZv" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aZw" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/cargo) -"aZx" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aZy" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"aZF" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Security Checkpoint"; dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZJ" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZK" = (/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"aZL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZO" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/janitor) -"aZP" = (/turf/open/floor/plasteel,/area/janitor) -"aZQ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/power/apc{dir = 1; name = "Custodial Closet APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/janitor) -"aZR" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aZS" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hydroponics) -"aZT" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aZU" = (/obj/machinery/vending/hydronutrients,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hydroponics) -"aZV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aZW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aZX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aZZ" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen) -"baa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bab" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bac" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bad" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/item/storage/fancy/donut_box,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"bae" = (/obj/structure/chair/stool/bar,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bag" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bah" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"ban" = (/obj/structure/disposalpipe/segment,/obj/machinery/newscaster{pixel_x = 32; pixel_y = 1},/obj/structure/chair/wood/normal,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bao" = (/obj/machinery/computer/slot_machine,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bap" = (/obj/machinery/computer/slot_machine,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"baq" = (/obj/machinery/computer/arcade,/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bar" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bas" = (/obj/structure/table,/obj/item/pen,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/item/paper_bin{layer = 2.9},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/quartermaster/office) -"bat" = (/obj/structure/table,/obj/item/clipboard,/obj/item/folder/yellow,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office) -"bau" = (/obj/machinery/photocopier,/obj/machinery/light,/obj/machinery/camera{c_tag = "Cargo Office"; dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bav" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; name = "Cargo Office APC"; pixel_x = 1; pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/office) -"baw" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office) -"bax" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"baz" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/office) -"baA" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{name = "Cargo Bay APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baE" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage) -"baF" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/turf/open/floor/plasteel,/area/quartermaster/storage) -"baG" = (/turf/closed/wall,/area/maintenance/solars/starboard) -"baH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Bridge External Access"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/aisat_interior) -"baI" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/solar{id = "portsolar"; name = "Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"baJ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baK" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baL" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baP" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"baQ" = (/obj/machinery/computer/secure_data{dir = 4},/obj/machinery/button/door{id = "papersplease"; name = "Shutters Control Button"; pixel_x = -26; pixel_y = 6; req_access_txt = "1"},/obj/machinery/button/flasher{id = "brigentry"; pixel_x = -26; pixel_y = -4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"baR" = (/obj/item/pen,/obj/structure/table,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"baS" = (/obj/structure/chair/office/dark,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"baT" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"baU" = (/obj/machinery/power/apc{name = "Security Checkpoint APC"; pixel_x = 1; pixel_y = -24},/obj/structure/cable,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"baV" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"baW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/button/door{id = "jangarage"; name = "Custodial Closet Shutters Control"; pixel_x = 25; req_access_txt = "26"},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"baX" = (/obj/vehicle/ridden/janicart,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/button/door{id = "jangarage"; name = "Custodial Closet Shutters Control"; pixel_x = -25; req_access_txt = "26"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/janitor) -"baY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/janitor) -"baZ" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/requests_console{department = "Janitorial"; departmentType = 1; pixel_x = 32},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/janitor) -"bba" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics) -"bbb" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hydroponics) -"bbc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bbd" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) -"bbg" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbh" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/food/condiment/peppermill,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbi" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bbl" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenshutters"; name = "kitchen shutters"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"bbm" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bbo" = (/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbp" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bbr" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbs" = (/obj/item/cane,/obj/item/clothing/head/that,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbt" = (/obj/structure/disposalpipe/segment,/obj/structure/table/wood,/obj/item/clothing/under/dress/sundress,/obj/item/clothing/under/suit/waiter,/obj/item/clothing/under/dress/blacktango,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bbu" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/bar) -"bbv" = (/obj/structure/chair/stool,/obj/item/trash/can,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbw" = (/obj/effect/landmark/start/assistant,/obj/structure/chair/stool,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bbx" = (/obj/structure/chair/stool,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bby" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bbz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bbA" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Office Maintenance"; req_access_txt = "50"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office) -"bbB" = (/obj/structure/table,/obj/item/storage/firstaid/regular{pixel_x = 6; pixel_y = -5},/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/turf/open/floor/plasteel,/area/quartermaster/office) -"bbC" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/hand_labeler,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/office) -"bbD" = (/obj/machinery/vending/wardrobe/cargo_wardrobe,/turf/open/floor/plasteel,/area/quartermaster/office) -"bbE" = (/turf/closed/wall,/area/quartermaster/qm) -"bbF" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/quartermaster/qm) -"bbG" = (/obj/machinery/door/airlock/mining/glass{name = "Quartermaster"; req_access_txt = "41"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bbH" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/qm) -"bbI" = (/turf/closed/wall,/area/quartermaster/miningdock) -"bbJ" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bbK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bbL" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bbM" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/multitool,/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bbP" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/starboard) -"bbQ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bbR" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bbS" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bbT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bbU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bbV" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westright{dir = 1; name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "papersplease"; name = "privacy shutters"},/obj/item/crowbar,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"bbW" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "jangarage"; name = "Custodial Closet Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/janitor) -"bbX" = (/obj/structure/janitorialcart,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/janitor) -"bbY" = (/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 8},/obj/machinery/vending/wardrobe/jani_wardrobe,/turf/open/floor/plasteel,/area/janitor) -"bbZ" = (/obj/machinery/seed_extractor,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hydroponics) -"bca" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Hydroponics South"; dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bcb" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{base_state = "left"; dir = 1; icon_state = "left"; name = "Hydroponics Desk"; req_access_txt = "35"},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel/dark,/area/hydroponics) -"bcc" = (/obj/machinery/biogenerator,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/hydroponics) -"bcd" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 1; name = "Hydroponics Desk"; req_access_txt = "35"},/obj/item/reagent_containers/food/snacks/cube/monkey,/turf/open/floor/plasteel/dark,/area/hydroponics) -"bce" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bcf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bcg" = (/obj/structure/table,/obj/item/kitchen/rollingpin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bch" = (/obj/structure/table,/obj/item/storage/box/ingredients/wildcard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bck" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcm" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bco" = (/obj/structure/table/wood/fancy,/obj/item/gun/ballistic/revolver/russian{pixel_y = 16},/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bcq" = (/obj/item/clothing/glasses/monocle,/obj/item/instrument/recorder,/obj/structure/table/wood/fancy,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"bcr" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/wood/normal{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcs" = (/obj/item/clothing/shoes/sandal,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bct" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bcx" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"bcy" = (/obj/item/chair,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) -"bcz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bcA" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/item/storage/belt/fannypack/yellow,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bcB" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bcC" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bcD" = (/obj/structure/closet/wardrobe/miner,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bcE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bcF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bcG" = (/obj/structure/closet/emcloset,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bcH" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bcI" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bcJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bcK" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bcL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bcN" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/bridge) -"bcO" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/space,/area/space/nearstation) -"bcQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space,/area/solar/starboard) -"bcR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space,/area/solar/starboard) -"bcS" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard) -"bcT" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/starboard) -"bcU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space,/area/solar/starboard) -"bcV" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard) -"bcX" = (/turf/open/floor/plating,/area/hallway/secondary/entry) -"bcY" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bcZ" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bda" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdc" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"bdd" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bde" = (/obj/machinery/flasher{id = "brigentry"; pixel_x = -28; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/janitor) -"bdh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/janitor) -"bdi" = (/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/light_switch{dir = 9; pixel_x = 22},/turf/open/floor/plasteel,/area/janitor) -"bdj" = (/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) -"bdk" = (/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bdl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bdm" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics) -"bdn" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdo" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdp" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bdq" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/grown/tomato,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bdr" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/enzyme{pixel_y = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bdv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bdw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bdx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bdy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bdz" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) -"bdB" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bdC" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bdD" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bdE" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bdF" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 8; name = "Quartermaster APC"; pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bdG" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bdH" = (/obj/machinery/computer/bounty{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bdI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningdock) -"bdJ" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/pen,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bdK" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/shaft_miner,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bdL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bdM" = (/obj/machinery/requests_console{department = "Mining"; pixel_x = 32},/obj/machinery/computer/security/mining{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bdQ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) -"bdR" = (/obj/structure/chair/stool,/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bdS" = (/obj/machinery/power/solar_control{dir = 8; id = "starboardsolar"; name = "Starboard Solar Control"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/starboard) -"bdU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space,/area/solar/starboard) -"bdV" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay 1"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bdW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdX" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bdZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bea" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"beb" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bec" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) -"bed" = (/obj/structure/table,/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel,/area/janitor) -"bee" = (/obj/structure/table,/obj/item/storage/box/lights/mixed{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/mousetraps,/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/clothing/head/crown,/turf/open/floor/plasteel,/area/janitor) -"bef" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"beg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"beh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bei" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"bej" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bek" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bel" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bem" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) -"ben" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"beo" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/public/glass{name = "Kitchen"; req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) -"bep" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 20},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"beq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ber" = (/obj/effect/landmark/start/cook,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bes" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"beu" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bex" = (/obj/machinery/camera{c_tag = "Bar Port"; dir = 1},/obj/machinery/light{light_color = "#c9d3e8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bey" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bez" = (/obj/structure/table/wood,/obj/item/instrument/trombone,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beA" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/light{light_color = "#c9d3e8"},/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = -28; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beC" = (/obj/structure/chair/wood/normal{dir = 4},/obj/machinery/light{light_color = "#c9d3e8"},/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = -28; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beD" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/kitchen/fork,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beE" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beF" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Bar Starboard"; dir = 1},/obj/machinery/light{light_color = "#c9d3e8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"beI" = (/turf/closed/wall,/area/science/robotics/mechbay) -"beJ" = (/obj/structure/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/keycard_auth{pixel_x = -23},/turf/open/floor/plasteel,/area/quartermaster/qm) -"beK" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/quartermaster,/turf/open/floor/plasteel,/area/quartermaster/qm) -"beL" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"beM" = (/obj/machinery/mineral/equipment_vendor,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"beN" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/shaft_miner,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"beO" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"beP" = (/obj/machinery/computer/shuttle/mining{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"beR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"beS" = (/obj/item/caution,/turf/open/floor/plating,/area/maintenance/department/cargo) -"beU" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/space,/area/solar/starboard) -"beY" = (/obj/machinery/camera{c_tag = "Arrivals Central"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"beZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfa" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"bfb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfc" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Central Access"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bff" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/directions/evac{dir = 8; pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/janitor) -"bfj" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bfk" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bfl" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) -"bfm" = (/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hydroponics) -"bfn" = (/obj/structure/reagent_dispensers/watertank/high,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hydroponics) -"bfo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfp" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/machinery/button/door{id = "kitchenwindowshutters"; name = "Kitchen Window Shutters Control"; pixel_x = -26; pixel_y = 5; req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bfr" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) -"bfs" = (/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bft" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bfu" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bfv" = (/obj/structure/table,/obj/item/crowbar/large,/obj/machinery/airalarm{pixel_y = 22},/obj/item/clothing/head/welding,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfw" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/obj/machinery/power/apc{dir = 1; name = "Mech Bay APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfx" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfy" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/status_display/evac{pixel_y = 30},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfz" = (/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfA" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bfB" = (/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; pixel_x = -30},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/computer/card/minor/qm{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bfC" = (/obj/structure/table,/obj/item/clipboard,/obj/machinery/light,/obj/machinery/camera{c_tag = "Cargo Quartermaster's Office"; dir = 1},/obj/machinery/light_switch{pixel_y = -24},/obj/item/cartridge/quartermaster{pixel_x = 6; pixel_y = 5},/obj/item/cartridge/quartermaster,/obj/item/cartridge/quartermaster{pixel_x = -4; pixel_y = 7},/obj/item/coin/silver,/obj/item/stamp/qm,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bfD" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -35},/obj/machinery/computer/security/qm{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bfE" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/pickaxe{pixel_x = 5},/obj/item/shovel{pixel_x = -5},/obj/machinery/camera{c_tag = "Cargo Mining Dock"; dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bfF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/shaft_miner,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bfG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bfH" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bfI" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/quartermaster/miningdock) -"bfJ" = (/turf/open/floor/plating,/area/quartermaster/miningdock) -"bfK" = (/obj/docking_port/stationary{dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; roundstart_template = /datum/map_template/shuttle/mining/delta; width = 7},/turf/open/space/basic,/area/space) -"bfM" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bfN" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/paperplane,/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bfP" = (/obj/machinery/shieldwallgen,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bfY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bfZ" = (/turf/closed/wall/r_wall,/area/crew_quarters/lounge) -"bga" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/lounge) -"bgb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Lounge"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"bgc" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/lounge) -"bgd" = (/turf/closed/wall,/area/crew_quarters/lounge) -"bge" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/security{dir = 1; pixel_x = 32; pixel_y = 40},/obj/structure/sign/directions/science{dir = 4; pixel_x = 32; pixel_y = 32},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgh" = (/obj/structure/chair{name = "Throne of Custodia"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgi" = (/obj/machinery/vending/cola,/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/hydroponics) -"bgk" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"bgl" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen) -"bgn" = (/obj/structure/chair{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgo" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/storage/fancy/rollingpapers,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgp" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgq" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgr" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgs" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/donut,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bgu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bgv" = (/obj/item/kirbyplants{icon_state = "plant-14"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgw" = (/obj/structure/chair,/obj/item/clothing/head/bowler,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgx" = (/obj/machinery/firealarm{pixel_y = 27},/obj/structure/chair,/obj/item/clothing/mask/cigarette,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgy" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgz" = (/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32; pixel_y = 40},/obj/structure/sign/directions/medical{dir = 8; pixel_x = -32; pixel_y = 32},/obj/structure/sign/directions/engineering{pixel_x = -32; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgB" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgC" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgD" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bgE" = (/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/robot_debris{icon_state = "gib3"},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bgF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bgG" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bgH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bgI" = (/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bgJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bgK" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "Mining Dock APC"; pixel_x = -24},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bgL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bgM" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bgS" = (/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 13; id = "arrivals_stationary"; name = "pubby arrivals"; roundstart_template = /datum/map_template/shuttle/arrival/pubby; width = 6},/turf/open/space/basic,/area/space) -"bgU" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgV" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/button/door{id = "loungeshutters"; name = "Privacy Shutters"; pixel_y = 25},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bgZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bha" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhc" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/directions/engineering{pixel_x = 32; pixel_y = 28},/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32; pixel_y = 38},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Bar1"; location = "Robo"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhj" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "Skynet_launch"; name = "mech bay"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhl" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhn" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/circuit,/area/science/robotics/mechbay) -"bho" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/circuit,/area/science/robotics/mechbay) -"bhp" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance"; req_access_txt = "29"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhq" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhr" = (/obj/machinery/door/airlock/maintenance{name = "Mining Maintenance"; req_access_txt = "48"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhs" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bht" = (/obj/structure/closet/secure_closet/miner,/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bhu" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/light,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bhv" = (/obj/structure/closet/secure_closet/miner,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock) -"bhz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bhE" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bhF" = (/obj/structure/chair/comfy/beige{dir = 4},/obj/machinery/newscaster{pixel_x = -32},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bhG" = (/turf/open/floor/carpet,/area/crew_quarters/lounge) -"bhH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/lounge) -"bhI" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/machinery/camera{c_tag = "Lounge"; dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bhJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27; pixel_y = -1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhK" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhL" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=BrigS1"; location = "Lounge"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Lounge"; location = "Kitchen"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/plaque{icon_state = "L7"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhP" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhQ" = (/obj/machinery/light{dir = 4},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = 25; req_access_txt = "29"},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhR" = (/obj/machinery/light{dir = 8},/obj/machinery/button/door{id = "Skynet_launch"; name = "Mech Bay Door Control"; pixel_x = -25; req_access_txt = "29"},/obj/machinery/camera{c_tag = "Mech Bay"; dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bhU" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bhV" = (/obj/machinery/computer/mech_bay_power_console{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bib" = (/obj/structure/chair/comfy/beige{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bic" = (/obj/effect/landmark/start/assistant,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet,/area/crew_quarters/lounge) -"bid" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/lounge) -"bie" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"bif" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair{dir = 4},/obj/structure/sign/poster/official/random{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"big" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bih" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bii" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/medbay/alt{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bij" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bik" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bil" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bim" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bin" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Central Primary Hallway Hydroponics"; dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bio" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/plaque{icon_state = "L8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bip" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"biq" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bir" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Robotics"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bis" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bit" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"biu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"biv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"biw" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bix" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/robot_debris{icon_state = "gib3"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/shard{icon_state = "small"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"biF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"biI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"biJ" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/shutters/preopen{id = "loungeshutters"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/lounge) -"biK" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"biL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"biM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"biN" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge"; name = "Lounge APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel/grimy,/area/crew_quarters/lounge) -"biO" = (/obj/structure/table/glass,/obj/item/healthanalyzer{layer = 3.1},/obj/item/pen{layer = 3.2},/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biP" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/departments/examroom{pixel_y = -32},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biR" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Central Primary Hallway Genetics"; dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biS" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biT" = (/obj/structure/closet/firecloset,/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Port Emergency Storage"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/storage/emergency/port) -"biX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/storage/emergency/port) -"biY" = (/turf/closed/wall,/area/medical/morgue) -"biZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/grunge{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bja" = (/turf/closed/wall,/area/security/checkpoint/medical) -"bjb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/checkpoint/medical) -"bjc" = (/turf/closed/wall,/area/medical/medbay/central) -"bjd" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/medbay/central) -"bje" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/medical/medbay/central) -"bjf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bjg" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bjh" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bji" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjj" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjk" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Bar"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjl" = (/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjm" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjn" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bjr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bju" = (/turf/open/floor/plasteel,/area/science/robotics/mechbay) -"bjv" = (/obj/structure/closet,/obj/item/weldingtool,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjw" = (/turf/closed/wall/r_wall,/area/science/explab) -"bjx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjB" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"bjD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bjI" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/crew_quarters/lounge) -"bjJ" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/crew_quarters/lounge) -"bjK" = (/obj/structure/bookcase/random/religion,/turf/open/floor/wood,/area/crew_quarters/lounge) -"bjL" = (/turf/closed/wall,/area/storage/emergency/port) -"bjN" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/emergency/port) -"bjP" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/storage/emergency/port) -"bjQ" = (/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bjR" = (/obj/structure/plasticflaps/opaque,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/port) -"bjS" = (/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjW" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/power/apc{dir = 1; name = "Morgue APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bjX" = (/obj/structure/filingcabinet,/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_y = 30},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bjY" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bjZ" = (/obj/machinery/computer/secure_data,/obj/structure/reagent_dispensers/peppertank{pixel_y = 30},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bka" = (/obj/machinery/computer/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bkb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) -"bkc" = (/obj/structure/table,/obj/item/storage/firstaid/regular,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkd" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bke" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkf" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkh" = (/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bki" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bkm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bkn" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci3"; location = "Sci2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bko" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bkp" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bkq" = (/obj/structure/table,/obj/item/gps{gpstag = "RD0"},/obj/item/assembly/igniter{pixel_x = -4; pixel_y = -4},/obj/item/clothing/head/welding,/obj/item/screwdriver{pixel_y = 16},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bkr" = (/obj/machinery/modular_computer/console/preset/civilian,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bks" = (/obj/structure/table,/obj/item/wrench,/obj/item/stack/cable_coil,/obj/item/electronics/apc,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bkt" = (/turf/closed/wall/r_wall,/area/science/robotics/lab) -"bku" = (/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/robotics/lab) -"bkv" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/obj/item/paper_bin,/obj/item/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) -"bkw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bkx" = (/turf/closed/wall/r_wall,/area/science/server) -"bky" = (/turf/open/floor/engine,/area/science/explab) -"bkz" = (/obj/machinery/camera{c_tag = "Experimentation Lab Chamber"; network = list("ss13","rd")},/turf/open/floor/engine,/area/science/explab) -"bkA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/explab) -"bkB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/engine,/area/science/explab) -"bkD" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/explab) -"bkF" = (/turf/closed/wall/r_wall,/area/science/xenobiology) -"bkH" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{glass = 1; name = "Slime Euthanization Chamber"; opacity = 0; req_access_txt = "55"},/turf/open/floor/plating,/area/science/xenobiology) -"bkP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space,/area/solar/starboard) -"bkQ" = (/obj/machinery/vending/snack,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkR" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkS" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bkW" = (/obj/item/hemostat,/obj/item/retractor,/obj/item/cautery,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bkX" = (/obj/structure/extinguisher_cabinet{pixel_x = -28},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bkY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bkZ" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Genetics Cloning Foyer"; network = list("ss13","medbay")},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/power/apc{dir = 1; name = "Port Emergency Storage APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bla" = (/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"blb" = (/turf/open/floor/plating,/area/storage/emergency/port) -"blc" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/emergency/port) -"bld" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"ble" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"blf" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"blg" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"blh" = (/obj/machinery/light{dir = 8},/obj/machinery/newscaster{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bli" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"blj" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/depsec/medical,/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"blk" = (/obj/structure/table,/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bll" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bln" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 26; pixel_y = 28},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blq" = (/obj/structure/table,/obj/item/storage/box/bodybags{pixel_x = 3; pixel_y = 2},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"blr" = (/obj/structure/table,/obj/item/folder/white,/obj/item/healthanalyzer,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bls" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blt" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blv" = (/obj/structure/table,/obj/item/paicard,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blw" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blx" = (/obj/machinery/light{dir = 1},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -26; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blC" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"blE" = (/obj/structure/filingcabinet/chestdrawer,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"blF" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/roboticist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blG" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blH" = (/obj/machinery/camera{c_tag = "Robotics Lab"; network = list("ss13","rd")},/obj/structure/sink/kitchen{name = "utility sink"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blI" = (/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 30; receive_ore_updates = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel,/area/science/robotics/lab) -"blJ" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 2; sortType = 14},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Robotics Lab APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"blL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"blM" = (/obj/machinery/rnd/server,/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/circuit/telecomms/server,/area/science/server) -"blN" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/sign/poster/random{pixel_y = 32},/turf/open/floor/plasteel/dark/telecomms,/area/science/server) -"blP" = (/obj/effect/landmark/event_spawn,/obj/item/beacon,/obj/machinery/light{dir = 8},/turf/open/floor/engine,/area/science/explab) -"blQ" = (/obj/machinery/rnd/experimentor,/turf/open/floor/engine,/area/science/explab) -"blR" = (/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/explab) -"blS" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/book/manual/wiki/experimentor,/turf/open/floor/engine,/area/science/explab) -"blT" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/wirer,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"blU" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/integrated_electronics/debugger,/obj/machinery/computer/security/telescreen/circuitry{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"blV" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/stack/sheet/metal/ten,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"blW" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/wirer,/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen/circuitry{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"blX" = (/turf/open/floor/engine,/area/science/xenobiology) -"blZ" = (/obj/machinery/computer/camera_advanced/xenobio,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bmc" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bmd" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bme" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bmf" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bmg" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Genetics Maintenance"; req_one_access_txt = "12;45;5;9"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bmh" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bmi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bmj" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bmk" = (/obj/structure/table,/obj/item/crowbar,/obj/item/storage/toolbox/emergency,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bml" = (/obj/structure/girder,/turf/open/floor/plating,/area/storage/emergency/port) -"bmn" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/storage/emergency/port) -"bmp" = (/obj/structure/bodycontainer/morgue,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bmq" = (/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bmr" = (/obj/structure/table,/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/camera{c_tag = "Morgue"; dir = 8},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bms" = (/obj/machinery/power/apc{areastring = "/area/security/checkpoint/medical"; dir = 8; name = "Medbay Security APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Medbay Security Post"; dir = 4; network = list("ss13","medbay")},/obj/structure/closet/secure_closet/security/med,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bmt" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bmu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bmv" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bmw" = (/obj/item/kirbyplants{icon_state = "plant-05"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bmx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bmy" = (/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Kitchen"; location = "Med"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bmz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bmA" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bmB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmC" = (/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmH" = (/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci2"; location = "Sci"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bmL" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = 6},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bmM" = (/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmN" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmO" = (/obj/machinery/mecha_part_fabricator,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bmR" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20; pixel_x = 3; pixel_y = -4},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bmS" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 4; external_pressure_bound = 120; name = "server vent"},/turf/open/floor/circuit/telecomms/server,/area/science/server) -"bmT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/dark/telecomms,/area/science/server) -"bmU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8; external_pressure_bound = 140; name = "server vent"; pressure_checks = 0},/turf/open/floor/circuit/telecomms/server,/area/science/server) -"bmV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/engine,/area/science/explab) -"bmW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/engine,/area/science/explab) -"bmX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/engine,/area/science/explab) -"bmY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/engine,/area/science/explab) -"bmZ" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/machinery/magnetic_controller{autolink = 1; pixel_x = -28; pixel_y = 3},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bna" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/turf_decal/box/red,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bnb" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/item/stock_parts/cell/high,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bnc" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/engine,/area/science/explab) -"bnd" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/xenobiology) -"bnh" = (/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/xenobiology) -"bni" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/xenobiology) -"bnj" = (/turf/closed/wall,/area/science/xenobiology) -"bnl" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bnn" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) -"bno" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnq" = (/obj/item/beacon,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bns" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnt" = (/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bnu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bnv" = (/turf/closed/wall,/area/medical/genetics) -"bnw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Cloning"; req_one_access_txt = "5;9"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"bnx" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/table,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/clothing/neck/stethoscope,/obj/item/clothing/mask/surgical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bny" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/item/kirbyplants{icon_state = "plant-11"},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bnz" = (/obj/structure/table,/obj/item/folder/white,/obj/item/clothing/gloves/color/latex,/obj/item/storage/fancy/candle_box,/obj/machinery/light_switch{pixel_x = 22},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bnA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/medical) -"bnB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Medbay Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/medical) -"bnC" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/drinks/britcup{desc = "Kingston's personal cup."},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnD" = (/obj/structure/table/reinforced,/obj/item/paper_bin{pixel_x = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bnI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bnL" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bnM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bnN" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bnO" = (/obj/machinery/rnd/production/circuit_imprinter,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bnP" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bnQ" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bnR" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bnS" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bnT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plasteel/dark,/area/science/server) -"bnU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Server Room"; req_access_txt = "30"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/dark,/area/science/server) -"bnV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/engine,/area/science/explab) -"bnW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/science/explab) -"bnX" = (/obj/machinery/door/poddoor/preopen{id = "telelab"; name = "test chamber blast door"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/science/explab) -"bnY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "testlab"; name = "test chamber blast door"},/turf/open/floor/engine,/area/science/explab) -"bnZ" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"boa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/science/explab) -"boc" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/engine,/area/science/explab) -"bod" = (/turf/closed/wall,/area/science/explab) -"boe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/science/explab) -"bof" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/trinary/filter,/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/science/explab) -"bog" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/engine,/area/science/explab) -"boh" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/engine,/area/science/explab) -"bok" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/cargo) -"bom" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"bon" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"boo" = (/obj/machinery/camera{c_tag = "Arrivals Port Aft"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/entry) -"bop" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"boq" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bor" = (/obj/structure/flora/grass/jungle,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/medical/genetics) -"bos" = (/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/medical/genetics) -"bot" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/medical/genetics) -"bou" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/genetics) -"bov" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bow" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"box" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"boy" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"boz" = (/obj/machinery/vending/clothing,/obj/machinery/firealarm{pixel_y = 27},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"boA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"boC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"boD" = (/obj/item/ectoplasm,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"boE" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boH" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boI" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/medical_doctor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boJ" = (/obj/structure/table/reinforced,/obj/item/folder/white,/obj/item/pen,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boL" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boM" = (/obj/structure/bed/roller,/obj/machinery/camera{c_tag = "Medbay Entrance"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boN" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boO" = (/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"boP" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boQ" = (/obj/structure/closet/firecloset/full,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boR" = (/obj/structure/table,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boS" = (/obj/structure/chair,/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boT" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/effect/turf_decal/bot,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boU" = (/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/machinery/camera{c_tag = "Research Division Lobby"; dir = 1},/obj/machinery/light,/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"boX" = (/obj/machinery/computer/rdconsole/robotics{dir = 4},/obj/machinery/button/door{id = "robotics"; name = "Shutters Control Button"; pixel_x = -26; pixel_y = 4; req_access_txt = "29"},/obj/machinery/light_switch{pixel_x = -25; pixel_y = -6},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"boZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bpa" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/science/server) -"bpb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/dark,/area/science/server) -"bpc" = (/obj/machinery/computer/rdservercontrol{dir = 8},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/camera{c_tag = "Server Room"; network = list("ss13","rd"); pixel_x = 22},/turf/open/floor/plasteel/dark,/area/science/server) -"bpd" = (/obj/machinery/button/door{id = "testlab"; name = "Window Blast Doors"; pixel_x = -6},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "telelab"; name = "Test Chamber Blast Door"; pixel_x = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bpe" = (/obj/machinery/computer/rdconsole/experiment,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bpf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/explab) -"bpg" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bph" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_y = 30; receive_ore_updates = 1},/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/machinery/camera{c_tag = "Experimentation Lab Central"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bpi" = (/obj/structure/closet/crate,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bpn" = (/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bpo" = (/obj/item/wrench,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/engine,/area/science/explab) -"bpp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/engine,/area/science/explab) -"bpq" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bpr" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/engine,/area/science/xenobiology) -"bpt" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bpu" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bpv" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/medical/genetics) -"bpw" = (/obj/structure/flora/grass/jungle,/obj/item/reagent_containers/food/snacks/grown/banana,/turf/open/floor/grass,/area/medical/genetics) -"bpx" = (/obj/structure/flora/ausbushes/lavendergrass,/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/grassybush,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/pointybush,/obj/structure/flora/junglebush,/obj/structure/flora/junglebush/large,/turf/open/floor/grass,/area/medical/genetics) -"bpy" = (/obj/machinery/clonepod,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = -30},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) -"bpz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bpA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bpB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bpC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/genetics) -"bpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bpE" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bpF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bpG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Morgue"; req_access_txt = "6"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpK" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpL" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bpM" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/grunge{name = "Morgue"; req_access_txt = "6"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/morgue) -"bpN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpO" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Medbay Reception"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpR" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpS" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bpV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/turf/open/floor/plating,/area/medical/chemistry) -"bpW" = (/obj/structure/table/reinforced,/obj/machinery/door/window/northleft{dir = 2; name = "Chemistry Desk"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/item/folder/white,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bpX" = (/obj/machinery/smartfridge/chemistry/preloaded,/turf/closed/wall,/area/medical/chemistry) -"bpY" = (/turf/closed/wall,/area/medical/chemistry) -"bqb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/turf/open/floor/plating,/area/science/lab) -"bqc" = (/obj/structure/table/reinforced,/obj/item/pen{layer = 3.1},/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 2; name = "Research and Development Desk"; req_one_access_txt = "7;29"},/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/obj/item/folder/white,/turf/open/floor/plating,/area/science/lab) -"bqd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqe" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Research Division"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqg" = (/obj/structure/table,/obj/item/book/manual/wiki/robotics_cyborgs{pixel_x = 2; pixel_y = 5},/obj/item/storage/belt/utility,/obj/item/reagent_containers/glass/beaker/large,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/item/radio/headset/headset_sci{pixel_x = -3},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bqh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bqi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bqj" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bqk" = (/obj/machinery/aug_manipulator,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bql" = (/obj/machinery/power/apc{dir = 8; name = "Server Room APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/science/server) -"bqm" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/server) -"bqn" = (/obj/structure/table,/obj/item/folder/white,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/science/server) -"bqo" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"bqp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/chair/stool,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqq" = (/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqs" = (/turf/open/floor/plasteel/white,/area/science/explab) -"bqt" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqv" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqx" = (/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/rack,/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bqA" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bqC" = (/obj/machinery/monkey_recycler,/obj/structure/window/reinforced,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/science/xenobiology) -"bqE" = (/obj/structure/table,/obj/structure/window/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bqF" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 1},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bqG" = (/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bqH" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #5"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bqI" = (/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bqJ" = (/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bqK" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #6"; req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bqL" = (/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bqO" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/department/cargo) -"bqS" = (/obj/machinery/power/apc{areastring = "/area/hallway/secondary/entry"; dir = 4; name = "Arrivals APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bqT" = (/obj/structure/flora/grass/jungle/b,/obj/structure/flora/ausbushes/ppflowers,/obj/item/reagent_containers/food/snacks/grown/banana,/obj/machinery/camera{c_tag = "Genetics Monkey Pen Fore"; dir = 4; network = list("ss13","medbay")},/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/medical/genetics) -"bqU" = (/obj/structure/sink/puddle,/obj/structure/flora/ausbushes/reedbush{pixel_y = 6},/turf/open/floor/grass,/area/medical/genetics) -"bqV" = (/obj/structure/flora/grass/jungle/b,/obj/machinery/light/small{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"bqW" = (/obj/machinery/computer/cloning{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) -"bqX" = (/obj/machinery/holopad,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bqY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 23},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bqZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bra" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{id_tag = "GeneticsDoor"; name = "Cloning"; req_one_access_txt = "5;9"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mapping_helpers/airlock/unres{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"brb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"brc" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"brd" = (/obj/machinery/power/apc{dir = 4; name = "Medbay APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bre" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Medbay APC"; pixel_x = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"brf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"brg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"brh" = (/obj/machinery/computer/med_data{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bri" = (/obj/machinery/computer/crew{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"brj" = (/obj/machinery/chem_master,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"brk" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"brl" = (/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"brm" = (/obj/machinery/chem_master,/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; pixel_x = 32; receive_ore_updates = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"brq" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; pixel_y = 28},/obj/item/stack/cable_coil/orange,/obj/item/storage/toolbox/mechanical,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"brr" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"brs" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"brt" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bru" = (/obj/machinery/holopad,/obj/machinery/light_switch{pixel_x = 25},/obj/item/reagent_containers/glass/bucket,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"brv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"brw" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"brx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bry" = (/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus{pixel_x = 5; pixel_y = -5},/obj/item/crowbar,/obj/structure/table,/turf/open/floor/plasteel,/area/science/robotics/lab) -"brz" = (/obj/item/circular_saw,/obj/item/scalpel{pixel_y = 12},/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/item/razor{pixel_y = 5},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"brA" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/bot_assembly/cleanbot,/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"brB" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"brC" = (/obj/item/clothing/gloves/color/latex,/obj/item/surgical_drapes,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"brD" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/science/server) -"brE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/science/server) -"brF" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/science/server) -"brG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1; name = "Connector Port (Air Supply)"},/obj/machinery/light_switch{pixel_x = -25},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"brH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/explab) -"brJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"brK" = (/obj/structure/table/reinforced,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/white,/area/science/explab) -"brL" = (/obj/machinery/bookbinder,/turf/open/floor/plasteel/white,/area/science/explab) -"brM" = (/obj/machinery/libraryscanner,/turf/open/floor/plasteel/white,/area/science/explab) -"brO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"brR" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/science/xenobiology) -"brT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/closet/l3closet,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"brU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/sign/departments/xenobio{pixel_x = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"brV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/xenobiology) -"brW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"brX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bsa" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/xenobiology) -"bsb" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #5"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) -"bsc" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio5"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) -"bsd" = (/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #6"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) -"bse" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) -"bsf" = (/obj/machinery/camera{c_tag = "Xenobiology Starboard"; network = list("ss13","rd")},/obj/structure/sign/departments/xenobio{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bsl" = (/obj/structure/sign/warning/vacuum/external,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) -"bsm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Arrivals Starboard Aft"; dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bsn" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/engine) -"bso" = (/obj/structure/flora/junglebush,/obj/structure/flora/grass/jungle/b,/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/medical/genetics) -"bsp" = (/obj/item/toy/beach_ball,/turf/open/floor/grass,/area/medical/genetics) -"bsq" = (/obj/structure/flora/grass/jungle/b,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/medical/genetics) -"bsr" = (/obj/machinery/dna_scannernew,/obj/machinery/camera{c_tag = "Genetics Cloning"; dir = 4; network = list("ss13","medbay")},/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/genetics) -"bss" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bst" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bsu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bsv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bsw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/genetics) -"bsx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bsy" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bsz" = (/obj/machinery/shower{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bsA" = (/turf/closed/wall,/area/medical/sleeper) -"bsB" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/obj/machinery/firealarm{dir = 4; pixel_x = -26},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bsC" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bsD" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bsE" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bsF" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bsG" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bsH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{id_tag = "medbaybolts"; name = "Medbay"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bsI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{id_tag = "medbaybolts"; name = "Medbay"},/obj/effect/turf_decal/tile/blue,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bsJ" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/structure/sign/poster/official/safety_eye_protection{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsK" = (/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsL" = (/obj/item/storage/box/beakers,/obj/structure/table,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsN" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bsR" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/lab) -"bsS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/lab) -"bsT" = (/obj/machinery/power/apc{dir = 4; name = "Research Lab APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/white,/area/science/lab) -"bsU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bsV" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bsW" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bsX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bsY" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bsZ" = (/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/healthanalyzer,/obj/item/healthanalyzer,/obj/item/healthanalyzer,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bta" = (/obj/item/retractor,/obj/item/hemostat,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"btb" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/machinery/camera{c_tag = "Robotics - Aft"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"btc" = (/obj/machinery/computer/operating{dir = 8; name = "Robotics Operating Computer"},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"btd" = (/obj/item/mmi,/obj/item/mmi,/obj/item/mmi,/obj/structure/table,/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"bte" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/science/server) -"btf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Server Room"; req_access_txt = "30"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/dark,/area/science/server) -"btg" = (/obj/structure/rack,/obj/item/crowbar,/obj/item/wrench,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/multitool,/obj/item/multitool,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"bth" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"bti" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/explab) -"btk" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"btl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"btp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"bts" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"btt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btA" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/landmark/xeno_spawn,/obj/structure/sign/departments/xenobio{pixel_x = -32},/turf/open/floor/plasteel,/area/science/xenobiology) -"btB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) -"btE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"btF" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/blobstart,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) -"btK" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 13; id = "ferry_home"; name = "port bay 2"; width = 5},/turf/open/space/basic,/area/space) -"btL" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"btM" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/turf/open/floor/plating,/area/hallway/secondary/entry) -"btN" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"btO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"btP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"btQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"btR" = (/obj/structure/flora/ausbushes/brflowers,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"btS" = (/turf/open/floor/grass,/area/medical/genetics) -"btT" = (/obj/structure/flora/junglebush,/obj/structure/flora/ausbushes/sunnybush,/obj/item/reagent_containers/food/snacks/grown/banana,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"btU" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btX" = (/obj/structure/table,/obj/item/book/manual/wiki/medical_cloning{pixel_y = 6},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btY" = (/obj/structure/table,/obj/item/storage/box/rxglasses{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/bodybags,/obj/item/pen,/obj/machinery/button/door{desc = "A remote control switch for the genetics doors."; id = "GeneticsDoor"; name = "Genetics Exit Button"; normaldoorcontrol = 1; pixel_x = 24; pixel_y = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"btZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bua" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bub" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"buc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bud" = (/obj/item/wrench/medical,/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bue" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/medical/sleeper) -"buf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bug" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"buh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bui" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"buj" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -28},/obj/machinery/camera{c_tag = "Chemistry"; dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"buk" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bul" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bum" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bun" = (/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bup" = (/obj/machinery/rnd/destructive_analyzer,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) -"buq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/lab) -"bur" = (/obj/effect/turf_decal/delivery,/obj/machinery/rnd/production/protolathe/department/science,/turf/open/floor/plasteel,/area/science/lab) -"bus" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Research and Development Lab"; dir = 8; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"but" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"buu" = (/obj/structure/chair{dir = 8},/obj/item/clothing/mask/cigarette,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"buv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/science/robotics/lab) -"buw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) -"buy" = (/obj/item/kirbyplants/photosynthetic{pixel_y = 10},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"buz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/explab) -"buA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buB" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"buC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/explab) -"buD" = (/obj/item/kirbyplants{icon_state = "plant-11"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buG" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buH" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"buI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buK" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"buL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"buW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bva" = (/turf/closed/wall,/area/maintenance/department/engine) -"bvb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bvc" = (/turf/closed/wall/r_wall,/area/medical/genetics) -"bvd" = (/obj/machinery/door/airlock/research/glass{name = "Genetics"; req_access_txt = "9"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bve" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/genetics) -"bvf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Medbay Port Hallway"; dir = 4; network = list("ss13","medbay")},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bvg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bvh" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bvi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bvj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bvk" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bvl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvm" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvo" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bvq" = (/obj/machinery/door/airlock/medical/glass{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bvr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bvs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bvt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bvu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvw" = (/obj/machinery/computer/rdconsole/core{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) -"bvx" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/science/lab) -"bvy" = (/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/effect/turf_decal/delivery,/obj/machinery/rnd/production/circuit_imprinter/department/science,/turf/open/floor/plasteel,/area/science/lab) -"bvz" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/lab) -"bvA" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/newscaster{pixel_y = 34},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster/random{pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvE" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvF" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bvG" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bvH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/explab) -"bvI" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Science Access Airlock"; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/explab) -"bvJ" = (/obj/structure/closet/firecloset/full,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/science/explab) -"bvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/science/explab) -"bvL" = (/obj/machinery/power/apc/highcap/ten_k{dir = 1; name = "Research Division APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvT" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvU" = (/obj/machinery/recharger,/obj/structure/table,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvV" = (/turf/open/floor/plasteel,/area/science/explab) -"bvW" = (/obj/machinery/magnetic_module,/obj/effect/landmark/blobstart,/obj/structure/target_stake,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bvY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"bvZ" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/dark,/area/science/explab) -"bwa" = (/turf/open/floor/plasteel/dark,/area/science/explab) -"bwb" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/explab) -"bwc" = (/obj/machinery/chem_master,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel/dark,/area/science/explab) -"bwe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bwf" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bwh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bwm" = (/turf/closed/wall,/area/maintenance/department/science) -"bwn" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) -"bws" = (/obj/structure/closet,/obj/item/stack/cable_coil/random,/obj/item/electronics/airalarm,/turf/open/floor/plating,/area/maintenance/department/engine) -"bwt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bwu" = (/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"bwv" = (/obj/structure/table,/obj/item/folder/white,/obj/item/pen,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bww" = (/obj/machinery/computer/scan_consolenew,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwx" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwz" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwA" = (/obj/structure/table,/obj/item/storage/box/rxglasses{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/bodybags,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bwB" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/table/glass,/obj/item/storage/box/gloves{pixel_x = 3; pixel_y = 3},/obj/item/storage/box/masks,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bwC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bwD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bwE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/sleeper) -"bwF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/bloodbankgen,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bwG" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bwH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bwI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bwK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwN" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/roller,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bwS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bwT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bwU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bwV" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bwW" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bxa" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/research_and_development,/obj/item/disk/tech_disk,/obj/item/disk/design_disk,/turf/open/floor/plasteel/dark,/area/science/lab) -"bxc" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/lab) -"bxd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 13},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bxe" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 12},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/lab) -"bxf" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) -"bxg" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bxh" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "R&D Lab"; req_one_access_txt = "7;29;30"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/lab) -"bxi" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci9"; location = "Sci8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxk" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxl" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci8"; location = "Sci7"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxn" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxo" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bxp" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bxq" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/research{name = "Research Division Access"; req_access_txt = "47"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxu" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxv" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/explab) -"bxw" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/science/explab) -"bxz" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxC" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxD" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bxG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/explab) -"bxH" = (/obj/effect/turf_decal/box/corners,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxJ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/chem_heater,/turf/open/floor/plasteel/dark,/area/science/explab) -"bxK" = (/obj/structure/chair/stool,/obj/item/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/dark,/area/science/explab) -"bxL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/dark,/area/science/explab) -"bxM" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 4},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxN" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #1"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxO" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxP" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/science) -"bxQ" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #2"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxR" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxS" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #3"; req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxT" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/xenobiology) -"bxY" = (/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bxZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bya" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"byb" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plating,/area/maintenance/department/engine) -"byc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"byd" = (/obj/structure/flora/junglebush/c,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/genetics) -"bye" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/grass,/area/medical/genetics) -"byf" = (/obj/structure/table,/obj/item/storage/box/disks,/obj/item/flashlight/pen,/obj/item/flashlight/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byg" = (/obj/structure/chair/stool,/obj/effect/landmark/start/geneticist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"byk" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/storage/box/monkeycubes,/obj/machinery/light{dir = 4},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"byl" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bym" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"byn" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"byo" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/sleeper) -"byp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"byr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bys" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"byt" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"byu" = (/turf/closed/wall,/area/crew_quarters/heads/cmo) -"byv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoshutters"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"byw" = (/obj/structure/closet/secure_closet/chemical,/obj/machinery/power/apc{dir = 8; name = "Chemistry APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/radio/headset/headset_med,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"byx" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"byz" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/door/window/eastright{dir = 1; name = "Chemistry Testing"; req_access_txt = "5; 33"},/obj/effect/turf_decal/stripes/line{dir = 9},/mob/living/simple_animal/mouse/white{name = "Labrette"},/turf/open/floor/engine,/area/medical/chemistry) -"byA" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/medical/chemistry) -"byC" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/airlock/research{name = "R&D Lab"; req_one_access_txt = "7;29;30"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/science/lab) -"byE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/lab) -"byF" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"byG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"byH" = (/obj/structure/table,/obj/item/multitool,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"byI" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"byJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci5"; location = "Sci4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"byO" = (/obj/machinery/door/poddoor/preopen{id = "rndshutters"; name = "research shutters"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/stripes/line,/obj/structure/sign/warning/securearea{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"byP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/explab) -"byQ" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/explab) -"byR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/shower{dir = 8; name = "emergency shower"; pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"byS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/science/explab) -"byT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/kirbyplants/photosynthetic{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byU" = (/obj/structure/chair/comfy{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byV" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byW" = (/obj/structure/chair/comfy{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byX" = (/obj/machinery/camera{c_tag = "Research Division Secure Hallway"; dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"byZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bza" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark,/area/science/explab) -"bzb" = (/obj/structure/closet/radiation,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bzc" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bzd" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/explab) -"bze" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/science/explab) -"bzg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bzh" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Experimentation Lab"; dir = 1; network = list("ss13","rd")},/obj/item/storage/toolbox/electrical{pixel_x = -4; pixel_y = 5},/obj/item/storage/toolbox/mechanical,/turf/open/floor/plasteel/dark,/area/science/explab) -"bzi" = (/obj/structure/table,/obj/item/electropack,/obj/item/taperecorder,/obj/item/screwdriver,/turf/open/floor/plasteel/dark,/area/science/explab) -"bzj" = (/obj/structure/table,/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/dark,/area/science/explab) -"bzk" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bzl" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #1"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bzm" = (/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/engine,/area/science/xenobiology) -"bzn" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bzp" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bzq" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/xenobiology) -"bzr" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #3"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"bzs" = (/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/engine,/area/science/xenobiology) -"bzy" = (/obj/structure/grille,/turf/open/space,/area/space/nearstation) -"bzz" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bzA" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bzB" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/computer/security/telescreen{desc = "Used for watching the monastery."; dir = 8; name = "Monastery Monitor"; network = list("monastery"); pixel_x = 28},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/hallway/secondary/entry) -"bzC" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bzD" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bzE" = (/obj/structure/flora/grass/jungle/b,/obj/machinery/camera{c_tag = "Genetics Monkey Pen Aft"; dir = 4; network = list("ss13","medbay")},/obj/structure/flora/ausbushes/grassybush,/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/medical/genetics) -"bzF" = (/obj/machinery/door/window/eastleft{name = "Monkey Pen"; req_one_access_txt = "9"},/obj/item/reagent_containers/food/snacks/grown/banana,/turf/open/floor/grass,/area/medical/genetics) -"bzG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzH" = (/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 28},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bzM" = (/obj/item/kirbyplants{icon_state = "plant-10"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bzN" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bzO" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"bzP" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bzQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bzR" = (/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bzS" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bzT" = (/obj/structure/table/glass,/obj/item/clothing/gloves/color/latex/nitrile,/obj/item/clothing/neck/stethoscope,/obj/item/clothing/mask/surgical,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bzU" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/medical/sleeper) -"bzV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bzW" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bzX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bzY" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/crew_quarters/heads/cmo) -"bzZ" = (/obj/machinery/suit_storage_unit/cmo,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAa" = (/obj/machinery/computer/crew,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAb" = (/obj/machinery/computer/med_data,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAc" = (/obj/machinery/computer/card/minor/cmo,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/keycard_auth{pixel_x = 26},/obj/machinery/button/door{dir = 4; id = "cmoshutters"; name = "Privacy shutters"; pixel_x = 38; req_access_txt = "40"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bAf" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bAg" = (/obj/structure/table/glass,/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/stack/cable_coil/random,/obj/item/book/manual/wiki/chemistry,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/stack/sheet/mineral/plasma{amount = 2; layer = 2.9},/obj/item/screwdriver,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bAi" = (/obj/machinery/smoke_machine,/turf/open/floor/engine,/area/medical/chemistry) -"bAk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/hallway/primary/aft) -"bAo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bAp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Research Director's Office"; req_access_txt = "30"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bAq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bAr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bAt" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/science) -"bAu" = (/turf/closed/wall,/area/security/checkpoint/science) -"bAv" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bAy" = (/turf/closed/wall/r_wall,/area/hallway/primary/aft) -"bAA" = (/turf/closed/wall,/area/science/storage) -"bAB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/science/storage) -"bAC" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bAD" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"bAE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bAF" = (/turf/closed/wall,/area/science/mixing) -"bAG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"bAH" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/engine,/area/science/xenobiology) -"bAI" = (/obj/structure/transit_tube/curved/flipped{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bAJ" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry) -"bAK" = (/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/hallway/secondary/entry) -"bAL" = (/obj/structure/transit_tube/station/reverse/flipped,/obj/structure/transit_tube_pod{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/entry) -"bAM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/item/extinguisher,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bAN" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/medical/genetics) -"bAO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small,/turf/open/floor/grass,/area/medical/genetics) -"bAP" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/flora/ausbushes/palebush,/turf/open/floor/grass,/area/medical/genetics) -"bAQ" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/dropper,/obj/item/storage/pill_bottle/mutadone,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAR" = (/obj/structure/chair/stool,/obj/effect/landmark/start/geneticist,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAV" = (/obj/machinery/shower{dir = 8},/obj/machinery/requests_console{department = "Genetics"; name = "Genetics Requests Console"; pixel_x = 32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bAW" = (/turf/closed/wall,/area/medical/virology) -"bAX" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; id_tag = "virology_airlock_exterior"; name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; req_access_txt = "39"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel/white,/area/medical/virology) -"bAY" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/virology) -"bBb" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bBc" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bBd" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bBe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bBf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bBg" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBh" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBi" = (/obj/effect/landmark/start/chief_medical_officer,/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBk" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Chief Medical Office"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/computer/security/telescreen/cmo{dir = 8; pixel_x = 30},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bBl" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Lab Maintenance"; req_access_txt = "5; 33"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bBm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bBo" = (/turf/closed/wall,/area/hallway/primary/aft) -"bBp" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) -"bBq" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/power/apc{dir = 8; name = "RD Office APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBr" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBu" = (/obj/item/kirbyplants/dead,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/button/door{desc = "A switch that controls privacy shutters."; id = "rdprivacy"; name = "Privacy Shutters"; pixel_x = 40; pixel_y = -5; req_access_txt = "30"},/obj/machinery/keycard_auth{pixel_x = 28; pixel_y = 6},/obj/machinery/button/door{id = "rndshutters"; name = "Research Lockdown"; pixel_x = 28; pixel_y = -5; req_access_txt = "47"},/obj/machinery/button/door{id = "research_shutters_2"; name = "RnD Shutters"; pixel_x = 40; pixel_y = 5; req_access_txt = "47"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bBw" = (/obj/machinery/computer/security,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bBx" = (/obj/machinery/computer/security/mining,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bBy" = (/obj/machinery/computer/secure_data,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecomms)"; pixel_x = 28; pixel_y = 24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bBz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bBA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bBB" = (/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bBC" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/storage) -"bBD" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/science/storage) -"bBE" = (/obj/structure/sign/poster/random{pixel_y = 32},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bBF" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bBG" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/storage) -"bBH" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bBI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"bBJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bBK" = (/obj/structure/closet/bombcloset,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBL" = (/obj/structure/closet/bombcloset,/obj/machinery/airalarm/unlocked{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bBN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) -"bBO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bBP" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBQ" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "Toxins Lab APC"; pixel_y = 25},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/camera{c_tag = "Toxins Lab Starboard"; network = list("ss13","rd")},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBT" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bBU" = (/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/science/xenobiology) -"bBV" = (/obj/structure/transit_tube/curved,/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"bBW" = (/turf/open/space,/area/space) -"bBX" = (/turf/closed/wall/r_wall,/area/maintenance/department/engine) -"bBY" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/mesh,/obj/item/stack/medical/suture,/turf/open/floor/plating,/area/maintenance/department/engine) -"bBZ" = (/obj/structure/table,/obj/item/pen,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCa" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCb" = (/obj/machinery/dna_scannernew,/obj/machinery/camera{c_tag = "Genetics"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCc" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCd" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCe" = (/obj/machinery/power/apc{dir = 4; name = "Genetics APC"; pixel_x = 27},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bCf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology) -"bCg" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) -"bCh" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Virology Airlock"; network = list("ss13","medbay")},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bCi" = (/obj/structure/table/glass,/obj/item/stack/medical/gauze,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bCj" = (/obj/machinery/sleeper{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/medical/sleeper) -"bCl" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bCm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"bCn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bCo" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bCp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bCq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Chief Medical Office"; req_access_txt = "40"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/heads/cmo) -"bCr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCs" = (/obj/structure/table/glass,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/pen{layer = 3.1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCt" = (/obj/structure/table/glass,/obj/item/folder/white,/obj/item/clothing/glasses/hud/health,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCu" = (/obj/structure/table/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/medical/gauze,/obj/item/clothing/neck/stethoscope,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCv" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bCw" = (/obj/machinery/door/airlock/maintenance{name = "CMO Maintenance"; req_access_txt = "40"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCy" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 11},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bCz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCA" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCB" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bCD" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bCE" = (/obj/machinery/computer/robotics{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCG" = (/obj/structure/displaycase/labcage,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bCJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "rdprivacy"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bCK" = (/obj/structure/table,/obj/machinery/camera{c_tag = "Science Security Post"; dir = 4; network = list("ss13","rd")},/obj/item/book/manual/wiki/security_space_law,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bCL" = (/obj/effect/landmark/start/depsec/science,/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bCM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bCN" = (/obj/structure/chair/comfy,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bCO" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/aft) -"bCP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/storage) -"bCQ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bCR" = (/turf/open/floor/engine,/area/science/storage) -"bCS" = (/obj/structure/sign/warning/fire,/turf/closed/wall,/area/science/storage) -"bCT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bCU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bCV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/mixing) -"bCW" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) -"bCX" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bCZ" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDa" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDb" = (/obj/machinery/atmospherics/components/trinary/mixer/flipped{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bDc" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bDd" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 32; receive_ore_updates = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/wrench,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bDe" = (/obj/machinery/light{light_color = "#d1dfff"},/turf/open/floor/engine,/area/science/xenobiology) -"bDf" = (/obj/structure/transit_tube,/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"bDg" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/department/engine) -"bDh" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/department/engine) -"bDi" = (/turf/open/floor/plating,/area/maintenance/department/engine) -"bDj" = (/obj/item/trash/candy,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bDk" = (/obj/item/chair,/obj/item/cigbutt/roach,/turf/open/floor/plating,/area/maintenance/department/engine) -"bDl" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bDm" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bDn" = (/obj/machinery/vending/wardrobe/gene_wardrobe,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bDo" = (/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bDp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/plaque,/turf/open/floor/plasteel/white,/area/medical/virology) -"bDq" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bDr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/sleeper) -"bDs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bDt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDv" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDw" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDx" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 4; name = "CMO's Office APC"; pixel_x = 26},/obj/structure/cable,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bDy" = (/turf/closed/wall,/area/medical/exam_room) -"bDz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bDA" = (/obj/machinery/vending/cigarette,/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bDB" = (/obj/machinery/airalarm/unlocked{dir = 4; pixel_x = -23},/obj/machinery/computer/rdconsole{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDC" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDD" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDE" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/research_director,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDF" = (/obj/machinery/computer/card/minor/rd{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bDG" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bDH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bDI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bDK" = (/obj/structure/table,/obj/item/folder,/obj/item/pen,/obj/structure/sign/poster/random{pixel_x = 32},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bDL" = (/obj/structure/sign/warning/nosmoking{pixel_x = -32},/turf/open/floor/engine,/area/science/storage) -"bDM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/science/storage) -"bDN" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) -"bDO" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/storage) -"bDP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) -"bDQ" = (/obj/machinery/door/firedoor/heavy,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/research{name = "Toxins Storage"; req_access_txt = "8"},/turf/open/floor/plasteel/dark,/area/science/storage) -"bDR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bDS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/explab) -"bDT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bDU" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research/glass{name = "Toxins Lab"; req_access_txt = "8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bDV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDW" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) -"bEa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bEb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bEc" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bEd" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bEf" = (/obj/machinery/airalarm{pixel_y = 22},/obj/item/storage/bag/ore,/obj/item/pickaxe,/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bEj" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEk" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden,/obj/machinery/meter,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/engine) -"bEl" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Out"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEm" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEo" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEp" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bEq" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEr" = (/turf/closed/wall/r_wall,/area/medical/virology) -"bEs" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology) -"bEt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bEu" = (/obj/structure/closet/l3closet,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bEv" = (/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/rnd/production/techfab/department/medical,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEw" = (/obj/structure/table,/obj/item/storage/firstaid/brute{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEx" = (/obj/structure/table,/obj/item/storage/firstaid/fire{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/fire,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/door/window/southleft{name = "First-Aid Supplies"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEy" = (/obj/structure/table,/obj/item/storage/firstaid/toxin{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/toxin,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/machinery/door/window/southright{name = "First-Aid Supplies"; req_access_txt = "5"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEz" = (/obj/structure/table,/obj/item/storage/firstaid/o2{pixel_x = 3; pixel_y = 3},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEB" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bED" = (/obj/structure/closet/secure_closet/CMO,/obj/item/valentine,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEE" = (/obj/machinery/modular_computer/console/preset/civilian{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEF" = (/obj/item/cartridge/medical{pixel_x = -2; pixel_y = 6},/obj/item/cartridge/medical{pixel_x = 6; pixel_y = 3},/obj/item/cartridge/medical,/obj/item/cartridge/chemistry{pixel_y = 2},/obj/structure/table,/obj/machinery/light,/obj/item/wrench/medical,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEG" = (/obj/item/folder/blue,/obj/item/stamp/cmo,/obj/structure/table,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEH" = (/obj/item/kirbyplants{icon_state = "plant-16"},/obj/machinery/light_switch{pixel_y = -22},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bEI" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/closet,/obj/item/clothing/under/rank/medical/doctor/nurse,/obj/item/clothing/head/nursehat,/obj/effect/decal/cleanable/cobweb,/obj/machinery/airalarm{pixel_y = 22},/obj/structure/sign/poster/official/no_erp{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bEJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/landmark/blobstart,/obj/item/melee/baton/cattleprod{preload_cell_type = /obj/item/stock_parts/cell/high},/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bEK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "CMOCell"; name = "Door Bolt Control"; normaldoorcontrol = 1; pixel_y = 26; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bEL" = (/obj/machinery/door/airlock/command{id_tag = "CMOCell"; name = "Personal Examination Room"; req_access_txt = "40"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bEM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bEN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bEQ" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bER" = (/obj/machinery/computer/mecha{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/obj/machinery/light_switch{dir = 9; pixel_x = -22},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bES" = (/obj/item/aicard,/obj/item/circuitboard/aicore,/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director RC"; pixel_y = -30; receive_ore_updates = 1},/obj/machinery/light,/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bET" = (/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 5},/obj/item/folder/white,/obj/item/pen,/obj/item/stamp/rd,/obj/machinery/status_display/ai{pixel_y = -32},/obj/machinery/camera{c_tag = "Research Director's Office"; dir = 1; network = list("ss13","rd")},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bEU" = (/obj/item/cartridge/signal/toxins,/obj/item/cartridge/signal/toxins{pixel_x = -4; pixel_y = 2},/obj/item/cartridge/signal/toxins{pixel_x = 4; pixel_y = 6},/obj/structure/table/glass,/obj/machinery/computer/security/telescreen/rd{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bEV" = (/obj/machinery/newscaster{pixel_y = -30},/obj/machinery/modular_computer/console/preset/research{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bEW" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = -32},/obj/structure/filingcabinet/security,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bEX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bEY" = (/obj/machinery/power/apc{dir = 4; name = "Science Security APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-8"},/obj/structure/closet/secure_closet/security/science,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bEZ" = (/obj/structure/chair/comfy{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bFa" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/science/storage) -"bFb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/science/storage) -"bFd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/science/storage) -"bFf" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bFh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) -"bFi" = (/obj/item/assembly/prox_sensor{pixel_x = -4; pixel_y = 1},/obj/item/assembly/prox_sensor{pixel_x = 8; pixel_y = 9},/obj/item/assembly/prox_sensor{pixel_x = 9; pixel_y = -2},/obj/item/assembly/prox_sensor{pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/white,/area/science/mixing) -"bFj" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/mixing) -"bFk" = (/obj/structure/table/reinforced,/obj/item/wrench,/obj/item/screwdriver{pixel_y = 10},/obj/item/analyzer,/turf/open/floor/plasteel/white,/area/science/mixing) -"bFl" = (/turf/open/floor/plasteel/white,/area/science/mixing) -"bFm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bFn" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bFp" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bFr" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bFs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bFt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bFu" = (/obj/machinery/button/massdriver{dir = 4; id = "toxinsdriver"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bFx" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"bFy" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating,/area/maintenance/department/science) -"bFz" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/department/science) -"bFB" = (/obj/item/newspaper,/turf/open/floor/plating,/area/maintenance/department/science) -"bFC" = (/obj/item/wallframe/camera,/obj/machinery/button/door{id = "PottySci"; name = "Bathroom Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; pixel_y = 4; specialfunctions = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"bFD" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/science) -"bFE" = (/obj/docking_port/stationary{dwidth = 2; height = 6; id = "monastery_shuttle_asteroid"; name = "monastery"; width = 5},/turf/open/space,/area/space/nearstation) -"bFF" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"bFG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bFH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) -"bFI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bFJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bFK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bFL" = (/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bFM" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/virology{autoclose = 0; frequency = 1449; id_tag = "virology_airlock_interior"; name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Button"; pixel_x = -24; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bFN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/medical/virology) -"bFO" = (/turf/closed/wall/r_wall,/area/medical/medbay/central) -"bFP" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFR" = (/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFU" = (/turf/closed/wall,/area/medical/surgery) -"bFV" = (/obj/structure/table/glass,/obj/item/flashlight/pen,/obj/item/clothing/neck/stethoscope,/obj/item/lipstick/black,/obj/machinery/power/apc{dir = 8; name = "Personal Examination Room APC"; pixel_x = -25},/obj/structure/cable,/obj/item/reagent_containers/pill/morphine,/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bFW" = (/obj/effect/decal/remains/human,/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bFX" = (/obj/structure/bed,/obj/item/bedsheet/cmo,/obj/effect/decal/cleanable/blood/drip,/obj/item/restraints/handcuffs,/obj/item/clothing/mask/muzzle,/obj/machinery/light_switch{pixel_y = -22},/turf/open/floor/plasteel/dark,/area/medical/exam_room) -"bFY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/departments/examroom{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bFZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/department/engine) -"bGa" = (/obj/structure/sign/departments/science,/turf/closed/wall,/area/hallway/primary/aft) -"bGb" = (/obj/machinery/door/airlock/security/glass{name = "Research Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/science) -"bGc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/checkpoint/science) -"bGd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bGe" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bGf" = (/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/line,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/engine,/area/science/storage) -"bGg" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage) -"bGh" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bGi" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Toxins Storage"; dir = 8; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/engine,/area/science/storage) -"bGj" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"bGk" = (/obj/machinery/light,/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/dark,/area/science/explab) -"bGl" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/science/explab) -"bGm" = (/obj/structure/closet/emcloset,/obj/machinery/light_switch{dir = 8; pixel_x = -24; pixel_y = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGn" = (/obj/machinery/vending/wardrobe/science_wardrobe,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGo" = (/obj/item/assembly/signaler{pixel_y = 8},/obj/item/assembly/signaler{pixel_x = -8; pixel_y = 5},/obj/item/assembly/signaler{pixel_x = 6; pixel_y = 5},/obj/item/assembly/signaler{pixel_x = -2; pixel_y = -2},/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGp" = (/obj/item/transfer_valve{pixel_x = -5},/obj/item/transfer_valve{pixel_x = -5},/obj/item/transfer_valve,/obj/item/transfer_valve,/obj/item/transfer_valve{pixel_x = 5},/obj/item/transfer_valve{pixel_x = 5},/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Toxins Lab Port"; dir = 1; network = list("ss13","rd")},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGq" = (/obj/item/assembly/timer{pixel_x = 5; pixel_y = 4},/obj/item/assembly/timer{pixel_x = -4; pixel_y = 2},/obj/item/assembly/timer{pixel_x = 6; pixel_y = -4},/obj/item/assembly/timer,/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/white,/area/science/mixing) -"bGs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bGt" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bGu" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bGv" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bGw" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bGx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel,/area/science/mixing) -"bGy" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bGA" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Launch Maintenance"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/science/mixing) -"bGB" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"bGD" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space/nearstation) -"bGE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/dock) -"bGF" = (/obj/machinery/door/airlock/external{name = "Pod Docking Bay"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/chapel/dock) -"bGG" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/floor/plating/airless,/area/chapel/dock) -"bGH" = (/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) -"bGI" = (/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) -"bGK" = (/obj/structure/closet/boxinggloves,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bGM" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating,/area/maintenance/department/engine) -"bGN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bGO" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bGP" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bGQ" = (/obj/structure/window/reinforced,/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bGR" = (/obj/machinery/door/window/eastleft{dir = 2; name = "Monkey Pen"; req_one_access_txt = "39"},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bGS" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior"; idInterior = "virology_airlock_interior"; idSelf = "virology_airlock_control"; name = "Virology Access Console"; pixel_x = 8; pixel_y = 22; req_access_txt = "39"},/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bGT" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bGU" = (/obj/machinery/power/apc/highcap/five_k{dir = 1; name = "Virology APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{pixel_x = 22},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bGV" = (/obj/machinery/shower{dir = 4},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bGW" = (/turf/open/floor/plasteel/white,/area/medical/virology) -"bGX" = (/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bGY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Medbay Storage"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bGZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bHa" = (/obj/machinery/light{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bHb" = (/obj/structure/closet/crate/freezer/surplus_limbs,/obj/item/reagent_containers/glass/beaker/synthflesh,/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bHc" = (/obj/machinery/computer/med_data,/obj/machinery/status_display/evac{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bHd" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bHe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/medical/surgery) -"bHf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHh" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHi" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHj" = (/obj/item/storage/belt/utility,/obj/item/clothing/glasses/science,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHk" = (/obj/item/gps{gpstag = "RD0"},/obj/item/assembly/prox_sensor{pixel_x = -8; pixel_y = 4},/obj/item/clothing/ears/earmuffs,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/glass,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHl" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/mask/gas,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHr" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHt" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bHu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/science/storage) -"bHv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/engine,/area/science/storage) -"bHw" = (/turf/closed/wall/r_wall,/area/science/storage) -"bHy" = (/turf/closed/wall/r_wall,/area/science/mixing) -"bHz" = (/obj/machinery/atmospherics/components/binary/valve,/obj/machinery/button/door/incinerator_vent_toxmix{pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bHA" = (/obj/machinery/atmospherics/components/binary/valve,/obj/machinery/button/ignition{id = "toxigniter"; pixel_x = -6; pixel_y = -24},/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{pixel_x = 6; pixel_y = -26},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"bHC" = (/obj/machinery/atmospherics/components/binary/pump{name = "Incinerator Output Pump"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bHD" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) -"bHE" = (/obj/structure/window/reinforced,/obj/machinery/doppler_array/research/science,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"bHI" = (/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) -"bHJ" = (/turf/open/floor/plating,/area/chapel/dock) -"bHK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/chapel/dock) -"bHL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/chapel/dock) -"bHM" = (/turf/closed/wall/r_wall,/area/chapel/dock) -"bHN" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bHP" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bHQ" = (/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bHR" = (/obj/effect/decal/cleanable/vomit/old,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bHS" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bHT" = (/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/department/engine) -"bHU" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bHV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bHX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bHY" = (/obj/machinery/camera{c_tag = "Virology"; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm/unlocked{pixel_y = 23},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bHZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bIa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/virology) -"bIb" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bIc" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bId" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIe" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/light,/obj/machinery/camera{c_tag = "Medbay Equipment Room"; dir = 1; network = list("ss13","medbay")},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIf" = (/obj/machinery/vending/wardrobe/medi_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIg" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 2; pixel_y = 2},/obj/item/storage/box/syringes,/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/storage/belt/medical{pixel_y = 2},/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/reagent_containers/spray/cleaner,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIj" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/surgery) -"bIk" = (/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bIl" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bIm" = (/obj/machinery/camera{c_tag = "Medbay Recovery Room"; dir = 8; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{frequency = 1485; name = "Station Intercom (Medbay)"; pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bIn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/surgery) -"bIo" = (/obj/structure/closet/crate/freezer/blood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light_switch{pixel_x = -22},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sink{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIq" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Surgery"; network = list("ss13","surgery")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/vending/wallmed{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIs" = (/obj/structure/closet/secure_closet/medical2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bIt" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng2"; location = "Eng"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci6"; location = "Eng3"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIy" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci7"; location = "Sci6"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bID" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng"; location = "Sci5"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bIE" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/aft) -"bIF" = (/obj/structure/tank_dispenser,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/bot,/obj/machinery/light,/turf/open/floor/engine,/area/science/storage) -"bIG" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) -"bIH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/obj/machinery/power/apc{name = "Toxins Storage APC"; pixel_y = -25},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/storage) -"bII" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"bIJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/bot,/obj/machinery/light,/turf/open/floor/engine,/area/science/storage) -"bIK" = (/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"bIL" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,/turf/open/floor/engine,/area/science/mixing) -"bIM" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/science/mixing) -"bIN" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber."; dir = 4; layer = 4; name = "Test Chamber Telescreen"; network = list("toxins"); pixel_x = -32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"bIP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"bIQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"bIR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) -"bIT" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"bIU" = (/obj/effect/spawner/structure/window/reinforced,/turf/closed/wall,/area/chapel/dock) -"bIV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/chapel/dock) -"bIW" = (/obj/machinery/computer/shuttle/monastery_shuttle,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bIX" = (/obj/machinery/atmospherics/components/unary/tank/air,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bIY" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space) -"bIZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/engine) -"bJa" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJb" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJc" = (/obj/structure/chair/comfy/black,/obj/item/trash/pistachios,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJd" = (/obj/structure/chair/comfy/black,/obj/item/stack/spacecash/c100,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJe" = (/obj/structure/chair/comfy/black,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJf" = (/obj/structure/chair/comfy/black,/obj/item/cigbutt,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJg" = (/obj/item/trash/popcorn,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJh" = (/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bJi" = (/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bJj" = (/obj/structure/rack,/obj/item/cartridge/medical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bJk" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/infections,/obj/item/hand_labeler,/obj/item/radio/headset/headset_med,/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bJl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bJm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"bJn" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel/white,/area/medical/virology) -"bJo" = (/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_x = -30},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bJp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bJq" = (/obj/machinery/door/airlock/medical/glass{name = "Recovery Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bJr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bJs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bJt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Surgery"; req_access_txt = "45"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bJu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJw" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJy" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bJz" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance"; req_access_txt = "45"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bJA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bJB" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/machinery/camera{c_tag = "Research Division Entrance"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/space_heater,/obj/structure/sign/poster/random{pixel_y = -32},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/portable_atmospherics/canister/air,/obj/structure/sign/poster/random{pixel_x = 32},/obj/structure/sign/poster/random{pixel_y = -32},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bJN" = (/turf/closed/wall/r_wall,/area/engine/atmos) -"bJO" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos{name = "Toxins Storage"; req_access_txt = "24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/storage) -"bJP" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) -"bJQ" = (/obj/machinery/atmospherics/components/binary/pump/on,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airlock_sensor/incinerator_toxmix{pixel_x = -24},/turf/open/floor/engine,/area/science/mixing) -"bJR" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{dir = 8},/turf/open/floor/engine,/area/science/mixing) -"bJS" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/engine,/area/science/mixing) -"bJT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{req_access_txt = "8"},/turf/open/floor/plating,/area/science/mixing) -"bJV" = (/obj/machinery/mass_driver{id = "toxinsdriver"},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{dir = 8; name = "Mass Driver Door"; req_access_txt = "7"},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plating,/area/science/mixing) -"bJZ" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bKa" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bKb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bKc" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bKd" = (/obj/machinery/power/apc{dir = 4; name = "Monastery Docking Bay APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bKe" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"bKf" = (/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"bKh" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Arena"},/obj/structure/window/reinforced{dir = 1},/obj/structure/chair/stool,/turf/open/floor/engine,/area/maintenance/department/engine) -"bKi" = (/obj/structure/window/reinforced{dir = 1},/mob/living/simple_animal/chicken{name = "Bloodthirsty Peckins"},/turf/open/floor/engine,/area/maintenance/department/engine) -"bKj" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/engine,/area/maintenance/department/engine) -"bKk" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/engine,/area/maintenance/department/engine) -"bKl" = (/obj/item/stack/medical/gauze,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bKm" = (/obj/structure/light_construct{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bKn" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/virology) -"bKo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation B"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bKp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation A"; req_access_txt = "39"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bKq" = (/obj/effect/spawner/structure/window,/obj/structure/sign/warning/deathsposal,/turf/open/floor/plating,/area/medical/virology) -"bKr" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/medical/virology) -"bKs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bKt" = (/obj/machinery/computer/pandemic,/turf/open/floor/plasteel/white,/area/medical/virology) -"bKu" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bKv" = (/obj/item/bedsheet/medical,/obj/structure/bed,/obj/structure/mirror{pixel_x = -28},/obj/structure/curtain{layer = 4.5},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bKw" = (/obj/machinery/vending/wallmed{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bKx" = (/obj/machinery/button/door{id = "patientB"; name = "Privacy Shutters"; pixel_y = 25},/obj/machinery/camera{c_tag = "Patient Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bKy" = (/obj/machinery/door/airlock/medical{name = "Patient Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bKz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/event_spawn,/obj/item/beacon,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bKA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bKB" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bKC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bKD" = (/obj/structure/bed,/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bKE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bKF" = (/obj/structure/table/optable,/turf/open/floor/plasteel/white,/area/medical/surgery) -"bKG" = (/obj/machinery/power/apc{dir = 4; name = "Surgery APC"; pixel_x = 26},/obj/structure/cable,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bKH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) -"bKI" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bKJ" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bKK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bKM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/aft) -"bKO" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bKP" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"bKQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) -"bKR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) -"bKS" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/machinery/power/apc{dir = 8; name = "Atmospherics APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/watertank/high,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/atmos) -"bKT" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bKU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = 30},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix to Engine"},/turf/open/floor/plasteel,/area/engine/atmos) -"bKY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix Outlet Pump"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bKZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bLa" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"bLb" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) -"bLc" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "mix_in"; name = "distro out"},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bLd" = (/obj/machinery/camera{c_tag = "Atmospherics Waste Tank"},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bLe" = (/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bLf" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,/turf/open/floor/engine,/area/science/mixing) -"bLh" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/science/mixing) -"bLn" = (/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLp" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLq" = (/obj/machinery/door/airlock/grunge{name = "Monastery Transit"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"bLs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bLt" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/obj/effect/decal/cleanable/robot_debris/old,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bLu" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/maintenance/department/engine) -"bLv" = (/turf/open/floor/engine,/area/maintenance/department/engine) -"bLx" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/engine,/area/maintenance/department/engine) -"bLy" = (/obj/structure/mineral_door/wood{name = "The Roosterdome"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bLz" = (/obj/item/bedsheet/medical,/obj/structure/bed,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bLA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bLB" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bLC" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/item/stack/sheet/mineral/plasma{amount = 2},/obj/item/storage/box/monkeycubes{layer = 3.1},/obj/item/clothing/gloves/color/latex,/turf/open/floor/plasteel/white,/area/medical/virology) -"bLE" = (/obj/structure/table/glass,/obj/machinery/requests_console{department = "Virology"; name = "Virology Requests Console"; pixel_x = 32; receive_ore_updates = 1},/obj/item/paper_bin{layer = 2.9},/obj/item/pen/red,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bLF" = (/obj/structure/table,/obj/item/clipboard,/obj/item/pen{layer = 3.1},/obj/item/clothing/neck/stethoscope{layer = 3.2},/obj/machinery/light_switch{pixel_x = -22},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bLG" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bLH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/freezer,/area/medical/medbay/central) -"bLI" = (/obj/machinery/door/poddoor/shutters/preopen{id = "patientB"; name = "privacy shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) -"bLJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bLK" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bLL" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/surgery) -"bLM" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -26},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLO" = (/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLQ" = (/obj/structure/table,/obj/item/surgical_drapes,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bLR" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bLS" = (/obj/machinery/vending/cola,/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bLT" = (/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bLU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/aft) -"bLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) -"bLW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"bLX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bLY" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest{pixel_x = 3},/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bLZ" = (/obj/machinery/meter/atmos/atmos_waste_loop,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMa" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Distro to Waste"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMb" = (/obj/machinery/meter/atmos/distro_loop,/obj/machinery/atmospherics/pipe/manifold/supply/visible,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMc" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMd" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Distro"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMe" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bMf" = (/turf/open/floor/plasteel,/area/engine/atmos) -"bMg" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMh" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "mix_in"; name = "Gas Mix Tank Control"; output_tag = "mix_in"; sensors = list("mix_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bMi" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating/airless,/area/engine/atmos) -"bMj" = (/obj/machinery/air_sensor{id_tag = "mix_sensor"},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bMk" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bMl" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "inc_in"},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/engine/vacuum,/area/science/mixing) -"bMm" = (/obj/machinery/igniter{id = "toxigniter"; luminosity = 2},/turf/open/floor/engine/vacuum,/area/science/mixing) -"bMn" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 1},/turf/open/floor/engine/vacuum,/area/science/mixing) -"bMp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/science/mixing) -"bMq" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/science/mixing) -"bMr" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"bMs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bMt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bMu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bMv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/dock) -"bMw" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"bMx" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"bMy" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bMA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/maintenance/department/engine) -"bMB" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/engine,/area/maintenance/department/engine) -"bMC" = (/obj/item/stack/spacecash/c10,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bMD" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bME" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bMF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bMG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bMH" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/syringes,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/white,/area/medical/virology) -"bMI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/virologist,/turf/open/floor/plasteel/white,/area/medical/virology) -"bMJ" = (/obj/structure/table/glass,/obj/structure/reagent_dispensers/virusfood{pixel_x = 32},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/hud/health,/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMK" = (/obj/item/soap/nanotrasen,/obj/item/clothing/neck/stethoscope,/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/gun/syringe/dart,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bMM" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bMN" = (/obj/structure/table,/obj/item/hemostat,/obj/item/stack/medical/gauze,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMO" = (/obj/structure/table,/obj/item/surgicaldrill,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMP" = (/obj/structure/table,/obj/item/scalpel{pixel_y = 12},/obj/item/circular_saw,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMQ" = (/obj/structure/table,/obj/item/cautery{pixel_x = 4},/obj/item/razor{pixel_y = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMR" = (/obj/structure/table,/obj/item/retractor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/surgery) -"bMS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bMT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bMU" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Atmospherics"; start_active = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{dir = 8; freerange = 1; name = "Station Intercom (Telecomms)"; pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bMV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bMW" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/primary/aft) -"bMX" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"bMY" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "External to Filter"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bMZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bNa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bNb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bNc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bNd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bNe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bNf" = (/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/atmos) -"bNg" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bNh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{name = "Mix to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bNi" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bNj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bNk" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bNl" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bNm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bNn" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"bNo" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "mix_in"; pixel_y = 1},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bNp" = (/turf/open/floor/engine/vacuum,/area/science/mixing) -"bNq" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Launch Maintenance"; req_access_txt = "8"},/turf/open/floor/plating,/area/maintenance/department/science) -"bNr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bNs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"bNt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Monastery Dock"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bNu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bNv" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/light/small,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bNw" = (/turf/closed/wall,/area/chapel/dock) -"bNx" = (/obj/structure/transit_tube/station/reverse{dir = 1},/turf/open/floor/plating,/area/chapel/dock) -"bNy" = (/obj/structure/transit_tube/horizontal,/obj/machinery/camera{c_tag = "Monastery Transit"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plating,/area/chapel/dock) -"bNz" = (/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/chapel/dock) -"bNA" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/dock) -"bNB" = (/obj/structure/transit_tube/horizontal,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"bNE" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"bNF" = (/obj/item/stack/medical/suture,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bNG" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine,/area/maintenance/department/engine) -"bNH" = (/obj/structure/window/reinforced,/turf/open/floor/engine,/area/maintenance/department/engine) -"bNI" = (/obj/structure/window/reinforced,/mob/living/simple_animal/chicken{name = "Killer Cluck"},/turf/open/floor/engine,/area/maintenance/department/engine) -"bNJ" = (/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Arena"},/obj/structure/window/reinforced,/obj/structure/chair/stool,/turf/open/floor/engine,/area/maintenance/department/engine) -"bNK" = (/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNL" = (/obj/structure/table/glass,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/beaker,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNM" = (/obj/structure/table/glass,/obj/item/folder/white{pixel_y = 4},/obj/item/pen/red,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNN" = (/obj/structure/table/glass,/obj/item/folder/white{pixel_y = 4},/obj/item/pen/red,/obj/machinery/light/small,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNO" = (/obj/structure/table/glass,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/syringe,/obj/item/reagent_containers/glass/beaker,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNP" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNQ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/vending/wardrobe/viro_wardrobe,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNR" = (/obj/item/kirbyplants{icon_state = "plant-21"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNS" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNT" = (/obj/structure/closet/firecloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"bNU" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNV" = (/obj/item/wrench/medical,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNW" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bNX" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bNY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bNZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOb" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/primary/aft) -"bOf" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) -"bOg" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bOh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bOi" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/wardrobe/atmos_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bOj" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bOk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bOl" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bOm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bOn" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bOo" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bOp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bOq" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Pure to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) -"bOr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bOs" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/mixing) -"bOt" = (/obj/machinery/door/poddoor/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing) -"bOu" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/science/mixing) -"bOv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bOw" = (/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bOx" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bOy" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bOz" = (/obj/structure/chair/comfy/black{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bOA" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bOB" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) -"bOC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/medical/virology) -"bOD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/virology) -"bOE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/virology) -"bOF" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOH" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOJ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bOK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOL" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bOM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/primary/aft) -"bON" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) -"bOO" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bOP" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bOQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall,/area/engine/atmos) -"bOR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plating,/area/engine/atmos) -"bOS" = (/obj/effect/turf_decal/vg_decals/atmos/mix,/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bOT" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall,/area/engine/atmos) -"bOU" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste to Filter"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bOV" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to External"},/turf/open/floor/plasteel,/area/engine/atmos) -"bOX" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bOZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"bPa" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bPd" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bPe" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "N2O Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bPf" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bPg" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "n2o_out"; name = "n2o out"},/turf/open/floor/engine/n2o,/area/engine/atmos) -"bPh" = (/turf/open/floor/engine/n2o,/area/engine/atmos) -"bPl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{req_access_txt = "8"},/turf/open/floor/plating,/area/science/mixing) -"bPn" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bPo" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/dock) -"bPp" = (/obj/structure/sign/poster/contraband/random{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bPq" = (/obj/item/trash/chips,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bPr" = (/obj/structure/table,/obj/item/paper,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"bPs" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) -"bPt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bPu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/engine) -"bPv" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bPw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bPx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bPy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space/basic,/area/space/nearstation) -"bPz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bPA" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/department/engine) -"bPB" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bPC" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/department/engine) -"bPD" = (/obj/structure/table,/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/department/engine) -"bPE" = (/turf/closed/wall,/area/storage/tech) -"bPF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Tech Storage Maintenance"; req_access_txt = "23"},/turf/open/floor/plating,/area/storage/tech) -"bPG" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPH" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPJ" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPK" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/wrench,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPL" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPM" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPN" = (/obj/machinery/conveyor_switch{id = "atmosdeliver"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bPO" = (/obj/structure/disposalpipe/sorting/mail{sortType = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bPP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/atmospherics,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bPQ" = (/turf/closed/wall,/area/engine/atmos) -"bPR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bPS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/camera{c_tag = "Atmospherics Central"; dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bPT" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/turf/open/floor/plasteel,/area/engine/atmos) -"bPU" = (/obj/machinery/atmospherics/components/binary/pump{name = "Air to Ports"},/turf/open/floor/plasteel,/area/engine/atmos) -"bPV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bPW" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bPX" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "n2o_in"; name = "Nitrous Oxide Supply Control"; output_tag = "n2o_out"; sensors = list("n2o_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bPY" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"bPZ" = (/obj/machinery/air_sensor{id_tag = "n2o_sensor"},/turf/open/floor/engine/n2o,/area/engine/atmos) -"bQa" = (/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide,/turf/open/floor/engine/n2o,/area/engine/atmos) -"bQb" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/n2o,/turf/open/floor/engine/n2o,/area/engine/atmos) -"bQc" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Dock Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bQd" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/reedbush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bQe" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bQf" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/sand,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) -"bQg" = (/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) -"bQh" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Dock Staboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bQi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bQj" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQm" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQn" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQo" = (/obj/machinery/camera{c_tag = "Gravity Generator"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bQr" = (/turf/closed/wall/r_wall,/area/storage/tech) -"bQs" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/item/aicard,/obj/item/aiModule/reset,/obj/item/assembly/flash/handheld,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQu" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stock_parts/cell/high/plus,/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQv" = (/obj/structure/rack,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/spawner/lootdrop/techstorage/engineering,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQw" = (/obj/structure/rack,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/camera{c_tag = "Tech Storage"},/obj/item/circuitboard/computer/monastery_shuttle,/obj/effect/spawner/lootdrop/techstorage/service,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQx" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQy" = (/obj/structure/rack,/obj/item/electronics/airalarm,/obj/item/electronics/airlock,/obj/item/electronics/apc,/obj/item/electronics/firealarm,/obj/item/electronics/firelock,/obj/item/electronics/tracker,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQz" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQA" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bQB" = (/obj/machinery/power/apc{dir = 8; name = "Aft Hall APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bQC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Eng3"; location = "Eng2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bQD" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bQE" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor/heavy,/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) -"bQF" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bQH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) -"bQI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/engine/atmos) -"bQJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Ports to Filter"},/turf/open/floor/plasteel,/area/engine/atmos) -"bQK" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bQL" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bQM" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Unfiltered to Mix"},/turf/open/floor/plasteel,/area/engine/atmos) -"bQO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bQP" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "n2o_in"; pixel_y = 1},/turf/open/floor/engine/n2o,/area/engine/atmos) -"bQQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) -"bQR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) -"bQS" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bQT" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQU" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bQV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"bQW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bQX" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bQY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bQZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bRa" = (/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"bRb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bRc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bRd" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRe" = (/obj/structure/closet/radiation,/obj/machinery/camera{c_tag = "Gravity Generator Foyer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/storage/tech) -"bRg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/warning/radiation/rad_area{pixel_x = -32},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRj" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRm" = (/obj/machinery/light_switch{pixel_x = 25},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"bRs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/tank_dispenser,/turf/open/floor/plasteel,/area/engine/atmos) -"bRt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bRu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bRw" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bRx" = (/obj/machinery/computer/atmos_control,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bRy" = (/obj/structure/closet/secure_closet/atmospherics,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/atmos) -"bRz" = (/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/engine/atmos) -"bRA" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/engine/atmos) -"bRB" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bRC" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bRD" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) -"bRE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/maintenance/department/engine) -"bRF" = (/obj/structure/girder,/turf/closed/wall,/area/maintenance/department/engine) -"bRG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bRH" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bRK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/tech) -"bRL" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRO" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/medical,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRP" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/tcomms,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRR" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRT" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRU" = (/obj/machinery/door/airlock/engineering{name = "Tech Storage"; req_access_txt = "23"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bRV" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bRZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSa" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/obj/machinery/conveyor{dir = 4; id = "atmosdeliver"},/obj/machinery/door/firedoor/heavy,/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/window/northleft{dir = 4; name = "Atmospherics Desk"; req_access_txt = "24"},/turf/open/floor/plasteel,/area/engine/atmos) -"bSb" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Atmospherics"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/conveyor_switch{id = "atmosdeliver"},/turf/open/floor/plasteel,/area/engine/atmos) -"bSc" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) -"bSd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"bSe" = (/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bSf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bSh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Plasma Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bSj" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 8; frequency = 1441; id_tag = "tox_out"; name = "toxin out"},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSk" = (/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSl" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSm" = (/obj/structure/flora/ausbushes,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bSn" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) -"bSo" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bSp" = (/obj/structure/disposalpipe/junction/yjunction{dir = 2},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bSq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bSs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bSt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/engine) -"bSu" = (/obj/item/broken_bottle,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bSv" = (/obj/effect/decal/cleanable/ash,/turf/open/floor/plating,/area/maintenance/department/engine) -"bSw" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bSx" = (/obj/structure/closet,/obj/item/restraints/handcuffs/cable,/turf/open/floor/plating,/area/maintenance/department/engine) -"bSy" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"bSz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bSA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bSB" = (/obj/structure/chair/office/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bSC" = (/obj/machinery/power/terminal,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable/yellow{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bSD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/storage/tech) -"bSE" = (/obj/structure/sign/warning/radiation/rad_area{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/beacon,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable/yellow{icon_state = "0-8"},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bSL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSN" = (/obj/machinery/camera{c_tag = "Aft Primary Hallway Engineering"; dir = 1; start_active = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSO" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSP" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/departments/engineering{pixel_y = -32},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSQ" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/atmos/glass{name = "Atmospherics Monitoring"; req_access_txt = "24"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) -"bSR" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bSS" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bST" = (/obj/machinery/computer/atmos_alert{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bSU" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bSV" = (/obj/machinery/computer/atmos_control/tank{dir = 8; input_tag = "tox_in"; name = "Plasma Supply Control"; output_tag = "tox_out"; sensors = list("tox_sensor" = "Tank")},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bSW" = (/obj/machinery/air_sensor{id_tag = "tox_sensor"},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSX" = (/obj/effect/turf_decal/vg_decals/atmos/plasma,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSY" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bSZ" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space/nearstation) -"bTa" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bTb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"bTc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/maintenance/department/engine) -"bTd" = (/obj/item/stack/sheet/cardboard{amount = 14},/obj/item/vending_refill/cola,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bTf" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Virology Waste to Space"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bTg" = (/obj/machinery/atmospherics/components/binary/pump{name = "Virology Waste to Atmospherics"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bTh" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Air Out"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bTi" = (/obj/item/picket_sign,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bTj" = (/obj/structure/bonfire,/turf/open/floor/plating,/area/maintenance/department/engine) -"bTk" = (/obj/structure/closet,/obj/item/cigbutt/cigarbutt,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bTl" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/engine) -"bTm" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTn" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTo" = (/obj/machinery/light,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/gravity_generator) -"bTr" = (/obj/machinery/power/apc{dir = 8; name = "Gravity Generator APC"; pixel_x = -25; pixel_y = 1},/obj/structure/table,/obj/item/paper/guides/jobs/engi/gravity_gen,/obj/item/pen/blue,/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/gravity_generator) -"bTs" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/smes{charge = 5e+006},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/engine/gravity_generator) -"bTt" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/crate/engineering/electrical,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/electronics/apc,/obj/item/electronics/airalarm,/obj/item/electronics/airlock,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTw" = (/obj/structure/rack,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTx" = (/obj/structure/rack,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/obj/machinery/light{light_color = "#cee5d2"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTy" = (/obj/structure/rack,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTz" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTA" = (/obj/structure/rack,/obj/item/storage/toolbox/electrical{pixel_x = 2; pixel_y = 4},/obj/item/multitool,/obj/machinery/requests_console{department = "Tech storage"; pixel_y = -32},/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTB" = (/obj/machinery/power/apc{areastring = "/area/storage/tech"; name = "Tech Storage APC"; pixel_y = -24},/obj/structure/cable,/obj/structure/closet/crate/solarpanel_small,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bTC" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/engineering) -"bTD" = (/turf/closed/wall,/area/security/checkpoint/engineering) -"bTE" = (/turf/closed/wall,/area/engine/engineering) -"bTF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/engineering{name = "Engineering"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"bTG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/break_room) -"bTH" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bTI" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bTK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/sign/plaques/atmos{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Atmospherics Entrance"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/engine/atmos) -"bTL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/pipedispenser/disposal,/turf/open/floor/plasteel,/area/engine/atmos) -"bTM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/fireaxecabinet{pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bTN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"bTO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/atmos) -"bTP" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 1},/obj/machinery/camera{c_tag = "Atmospherics Starboard"; dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bTQ" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"bTR" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bTS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bTT" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bTV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8; frequency = 1441; id = "tox_in"; pixel_y = 1},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bTW" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"bTX" = (/obj/structure/table,/obj/item/storage/box/mousetraps,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUb" = (/obj/structure/grille/broken,/obj/structure/musician/piano,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUc" = (/obj/item/reagent_containers/food/snacks/beans,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUd" = (/obj/structure/closet,/obj/item/shard,/obj/item/stack/spacecash/c10,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUe" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUf" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/storage/tech) -"bUg" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bUh" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/storage/tech) -"bUi" = (/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/machinery/camera{c_tag = "Engineering Security Post"; dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUj" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUk" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUl" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{dir = 1; name = "Engineering Foyer APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/break_room) -"bUm" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/break_room) -"bUn" = (/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Engineering Access"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/break_room) -"bUo" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/break_room) -"bUp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bUq" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) -"bUr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bUs" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) -"bUt" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bUu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bUv" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bUw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bUy" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bUz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bUA" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bUC" = (/obj/structure/flora/ausbushes/fernybush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bUD" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/space,/area/space/nearstation) -"bUE" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/space,/area/space/nearstation) -"bUF" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUG" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/maintenance/department/engine) -"bUH" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/chief) -"bUI" = (/obj/item/cartridge/engineering{pixel_x = 4; pixel_y = 5},/obj/item/cartridge/engineering{pixel_x = -3; pixel_y = 2},/obj/item/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/cartridge/atmos,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 3; name = "Chief Engineer RC"; pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUJ" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Chief Engineer's Office"},/obj/machinery/computer/security/telescreen/ce{pixel_y = 30},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUK" = (/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/computer/apc_control,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUL" = (/obj/machinery/computer/station_alert,/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUM" = (/obj/machinery/computer/card/minor/ce,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bUN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/stairs,/area/storage/tech) -"bUO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/storage/tech) -"bUP" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall,/area/engine/engine_smes) -"bUQ" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bUR" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/smes/engineering,/obj/machinery/camera{c_tag = "Engineering Power Storage"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bUS" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/smes/engineering,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bUT" = (/turf/closed/wall,/area/engine/engine_smes) -"bUU" = (/turf/closed/wall/r_wall,/area/engine/engine_smes) -"bUV" = (/obj/structure/table,/obj/item/pen,/obj/machinery/light{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; pixel_x = -32},/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUW" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUX" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUY" = (/obj/machinery/door/airlock/security/glass{name = "Engineering Security Post"; req_access_txt = "63"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bUZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/break_room) -"bVa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/goonplaque,/area/engine/break_room) -"bVb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bVc" = (/obj/machinery/door/poddoor/preopen{id = "atmos"; name = "atmospherics security door"},/obj/machinery/door/firedoor/heavy,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,/turf/open/floor/plasteel,/area/engine/break_room) -"bVd" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bVe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bVf" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bVg" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) -"bVh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/turf/open/floor/plating,/area/engine/atmos) -"bVi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/turf/open/floor/plating,/area/engine/atmos) -"bVj" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/pump{name = "incinerator mix pump"},/turf/open/floor/plasteel,/area/engine/atmos) -"bVk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "CO2 Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bVl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/layer_manifold{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bVm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plating,/area/engine/atmos) -"bVn" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) -"bVo" = (/turf/open/floor/engine/co2,/area/engine/atmos) -"bVp" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bVr" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/space/nearstation) -"bVs" = (/obj/structure/mopbucket,/obj/item/mop,/turf/open/floor/plating,/area/maintenance/department/engine) -"bVu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"bVv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bVw" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bVy" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"bVz" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bVC" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/engine) -"bVD" = (/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors."; id = "Engineering"; name = "Engineering Lockdown"; pixel_x = -24; pixel_y = -10; req_access_txt = "10"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_x = -24; req_access_txt = "11"},/obj/machinery/button/door{id = "atmos"; name = "Atmospherics Lockdown"; pixel_x = -24; pixel_y = 10; req_access_txt = "24"},/obj/structure/table/reinforced,/obj/item/folder/yellow,/obj/item/paper/monitorkey,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bVE" = (/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bVG" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bVH" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/lighter,/obj/item/stamp/ce,/obj/item/stock_parts/cell/high/plus,/obj/machinery/keycard_auth{pixel_x = 26; pixel_y = 26},/obj/machinery/power/apc{dir = 4; name = "CE Office APC"; pixel_x = 28},/obj/structure/cable{icon_state = "0-8"},/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bVI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bVJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bVK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/storage/tech) -"bVL" = (/obj/structure/table,/obj/item/storage/box/smart_metal_foam{pixel_x = 4; pixel_y = 7},/obj/item/storage/box/lights/mixed,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bVM" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bVN" = (/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bVO" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/power/apc{areastring = "/area/security/checkpoint/engineering"; dir = 8; name = "Engineering Security APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bVP" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bVQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/wardrobe/red,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bVR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/engineering) -"bVS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) -"bVT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/break_room) -"bVU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_x = 27; pixel_y = -25},/turf/open/floor/plasteel,/area/engine/break_room) -"bVW" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bVY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bVZ" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bWb" = (/obj/machinery/computer/atmos_control/tank/carbon_tank{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bWc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) -"bWe" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2,/area/engine/atmos) -"bWf" = (/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) -"bWg" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) -"bWh" = (/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) -"bWi" = (/obj/structure/flora/ausbushes/leafybush,/obj/structure/flora/ausbushes/reedbush,/obj/machinery/camera{c_tag = "Monastery Asteroid Primary Entrance"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"bWj" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bWk" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"bWl" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"bWn" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/item/clothing/glasses/meson/gar,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bWo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bWp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bWq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bWr" = (/obj/machinery/modular_computer/console/preset/engineering{dir = 8},/obj/machinery/light_switch{pixel_x = 22},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bWs" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/RnD_secure,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bWt" = (/obj/structure/rack,/obj/machinery/camera{c_tag = "Secure Tech Storage"; dir = 1},/obj/effect/spawner/lootdrop/techstorage/command,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bWu" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/storage/tech) -"bWv" = (/obj/structure/table,/obj/item/stack/sheet/plasteel/twenty{pixel_x = -3; pixel_y = 3},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/machinery/computer/security/telescreen{desc = "Used for watching the engine containment area."; dir = 4; name = "Engine Monitor"; network = list("engine"); pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWw" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWx" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/structure/cable/yellow{icon_state = "2-4"},/obj/effect/landmark/start/station_engineer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWy" = (/obj/structure/cable/yellow{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWz" = (/obj/structure/tank_dispenser,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bWA" = (/obj/structure/filingcabinet,/obj/machinery/computer/security/telescreen{desc = "Used for watching the engine containment area."; dir = 4; name = "Engine Monitor"; network = list("engine"); pixel_x = -32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bWB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bWC" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 32},/obj/structure/closet/secure_closet/security/engine,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/engineering) -"bWD" = (/turf/closed/wall/r_wall,/area/security/checkpoint/engineering) -"bWE" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bWF" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"bWG" = (/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/delivery,/obj/machinery/shower{dir = 8; pixel_y = -4},/turf/open/floor/plasteel,/area/engine/break_room) -"bWH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/engine/break_room) -"bWI" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bWJ" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"bWM" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"bWO" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bWP" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) -"bWQ" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bWR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/engine/atmos) -"bWT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{dir = 8},/turf/open/floor/engine/co2,/area/engine/atmos) -"bWV" = (/turf/closed/wall,/area/chapel/main/monastery) -"bWW" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"bWX" = (/obj/effect/turf_decal/sand,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) -"bWZ" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"bXa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bXd" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"bXe" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"bXf" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXg" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXi" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_switch{pixel_x = 25},/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "ce_privacy"; name = "Privacy Shutters"; pixel_x = 24; req_access_txt = "11"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXk" = (/turf/closed/wall/r_wall,/area/engine/engineering) -"bXl" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/cable_coil,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/engine_smes"; dir = 8; name = "Engine Room APC"; pixel_x = -26},/obj/structure/cable,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/cable_coil,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bXm" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bXn" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bXo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bXp" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering{name = "Engine Room"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"bXq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"bXr" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/binary/pump{name = "Waste to Space"},/turf/open/floor/plasteel,/area/engine/atmos) -"bXs" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bXt" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bXu" = (/obj/machinery/computer/atmos_control/tank/nitrogen_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bXv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bXw" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/layer_manifold,/turf/open/floor/plasteel,/area/engine/atmos) -"bXx" = (/obj/machinery/computer/atmos_control/tank/oxygen_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"bXy" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"bXA" = (/obj/machinery/atmospherics/components/trinary/mixer/airmix,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bXB" = (/obj/machinery/computer/atmos_control/tank/air_tank{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bXC" = (/obj/machinery/light,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Air Outlet Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bXD" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bXE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bXF" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"bXG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) -"bXI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"bXJ" = (/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"bXL" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"bXM" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"bXN" = (/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"bXS" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"bXU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bXV" = (/obj/item/shard{icon_state = "small"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"bXY" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"bXZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"bYa" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/airlock/command{name = "Chief Engineer"; req_access_txt = "56"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bYb" = (/turf/closed/wall,/area/crew_quarters/heads/chief) -"bYc" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYd" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYe" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/turf/open/floor/plating,/area/engine/engine_smes) -"bYg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engine_smes) -"bYh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Power Storage"; req_access_txt = "11"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engine_smes) -"bYi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engine_smes) -"bYj" = (/obj/machinery/vending/engivend,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYk" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYl" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"bYm" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) -"bYn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bYo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/machinery/light{dir = 4},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/engineering) -"bYp" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"bYs" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bYt" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/disposal/incinerator) -"bYu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/atmos{name = "Incinerator"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bYv" = (/obj/machinery/atmospherics/pipe/simple/green/hidden{dir = 9},/turf/closed/wall,/area/maintenance/disposal/incinerator) -"bYw" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bYz" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"bYA" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) -"bYB" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) -"bYF" = (/obj/item/trash/pistachios,/obj/structure/rack,/turf/open/floor/plating,/area/maintenance/department/engine) -"bYI" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYK" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYN" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Engineering Port Fore"},/obj/structure/sign/map{icon_state = "map-pubby"; pixel_y = 32},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bYO" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bYQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYS" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYT" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"bYU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bYW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Engineering Starboard Fore"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bYZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bZa" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bZc" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bZf" = (/obj/machinery/power/apc{dir = 8; name = "Incinerator APC"; pixel_x = -24},/obj/machinery/airalarm{pixel_y = 22},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZg" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZh" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZi" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bZj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bZl" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) -"bZm" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) -"bZn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) -"bZo" = (/turf/open/floor/carpet,/area/chapel/main/monastery) -"bZr" = (/obj/item/trash/tray,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bZs" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/maintenance/department/engine) -"bZt" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"bZx" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/item/storage/belt/utility,/obj/item/flashlight,/obj/item/flashlight,/obj/item/clothing/glasses/meson/engine,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bZy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"bZz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"bZA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"bZB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bZD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"bZE" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"bZF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"bZG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) -"bZI" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"bZJ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"bZK" = (/obj/structure/lattice,/obj/machinery/atmospherics/components/unary/relief_valve/atmos/atmos_waste{dir = 1},/obj/structure/lattice/catwalk,/turf/open/space,/area/engine/atmos) -"bZL" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/atmos) -"bZM" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank In"},/turf/closed/wall/r_wall,/area/engine/atmos) -"bZN" = (/obj/machinery/atmospherics/pipe/simple,/obj/structure/grille,/obj/machinery/meter{name = "Mixed Air Tank Out"},/turf/closed/wall/r_wall,/area/engine/atmos) -"bZO" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZP" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZQ" = (/obj/machinery/computer/turbine_computer{dir = 8; id = "incineratorturbine"},/obj/machinery/button/door/incinerator_vent_atmos_main{pixel_x = 24; pixel_y = 6},/obj/machinery/button/door/incinerator_vent_atmos_aux{pixel_x = 24; pixel_y = -6},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"bZR" = (/obj/machinery/atmospherics/pipe/simple/purple/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bZS" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airlock_sensor/incinerator_atmos{pixel_y = 22},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"bZT" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bZU" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{dir = 8},/obj/machinery/air_sensor/atmos/incinerator_tank{pixel_x = 32; pixel_y = -32},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"bZV" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"bZY" = (/turf/closed/wall,/area/chapel/office) -"caa" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"cab" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"cae" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/engine/engineering) -"caf" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) -"cah" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"caj" = (/obj/structure/table,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/electronics/apc,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cak" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"cal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cam" = (/turf/open/floor/plasteel,/area/engine/engineering) -"can" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"caq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"car" = (/obj/structure/cable/yellow{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"caw" = (/obj/structure/table,/obj/item/rcl/pre_loaded,/turf/open/floor/plasteel,/area/engine/engineering) -"cax" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering) -"caz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) -"caA" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos) -"caB" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) -"caC" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) -"caD" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2,/area/engine/atmos) -"caE" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) -"caF" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) -"caG" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air,/area/engine/atmos) -"caH" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) -"caI" = (/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Incinerator"; dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the turbine vent."; dir = 4; name = "turbine vent monitor"; network = list("turbine"); pixel_x = -29},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"caJ" = (/obj/structure/cable/yellow{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"caK" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"caL" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{pixel_x = -6; pixel_y = -26},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caM" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caN" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/locked,/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/igniter/incinerator_atmos,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caP" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caQ" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/power/compressor{comp_id = "incineratorturbine"; dir = 8; luminosity = 2},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caR" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/power/turbine{dir = 4; luminosity = 2},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"caS" = (/turf/closed/wall,/area/chapel/asteroid/monastery) -"caT" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"caV" = (/obj/machinery/holopad,/obj/item/flashlight/lantern,/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) -"caW" = (/obj/item/flashlight/lantern,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) -"caZ" = (/obj/structure/table,/obj/item/wirecutters,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"cba" = (/obj/structure/table,/obj/item/storage/fancy/cigarettes/cigpack_robustgold,/turf/open/floor/plating,/area/maintenance/department/engine) -"cbb" = (/obj/structure/closet/emcloset,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"cbc" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"cbd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cbe" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/engine/engineering) -"cbf" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cbg" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"cbh" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"cbi" = (/obj/structure/rack,/obj/item/clothing/mask/gas{pixel_x = 3; pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3; pixel_y = -3},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"cbj" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) -"cbk" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"cbm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cbn" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) -"cbo" = (/obj/structure/rack,/obj/item/storage/belt/utility,/obj/item/wrench,/obj/item/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/structure/disposalpipe/segment{dir = 5},/obj/item/airlock_painter,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering) -"cbp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"cbq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"cbs" = (/turf/open/floor/engine/n2,/area/engine/atmos) -"cbt" = (/obj/effect/turf_decal/vg_decals/atmos/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) -"cbu" = (/turf/open/floor/engine/o2,/area/engine/atmos) -"cbv" = (/obj/effect/turf_decal/vg_decals/atmos/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) -"cbw" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air,/area/engine/atmos) -"cbx" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/vg_decals/atmos/air,/turf/open/floor/engine/air,/area/engine/atmos) -"cby" = (/turf/open/floor/engine/air,/area/engine/atmos) -"cbz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) -"cbA" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cbB" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Incinerator to Output"},/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cbC" = (/obj/machinery/button/ignition/incinerator/atmos{pixel_x = 26; pixel_y = -6},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cbD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"cbE" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"cbF" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{dir = 8},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"cbG" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/chapel/office) -"cbK" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cbM" = (/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) -"cbN" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) -"cbO" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/trophy{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) -"cbP" = (/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) -"cbR" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cbS" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"cbT" = (/obj/item/shovel,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/engine) -"cbV" = (/obj/machinery/shieldgen,/turf/open/floor/plating,/area/engine/engineering) -"cbW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/engineering) -"cbX" = (/turf/open/floor/plating,/area/engine/engineering) -"cbY" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cbZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"cca" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 5},/obj/item/storage/toolbox/mechanical{pixel_x = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ccb" = (/obj/structure/table,/obj/item/storage/toolbox/electrical{pixel_x = 1; pixel_y = 5},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"ccc" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/engine/engineering) -"cci" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"ccm" = (/obj/machinery/light/small,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) -"ccn" = (/obj/machinery/light/small,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) -"cco" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos) -"ccp" = (/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"ccq" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"ccr" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Incinerator Output Pump"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"ccs" = (/obj/structure/lattice,/turf/closed/wall,/area/maintenance/department/cargo) -"ccu" = (/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"ccE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) -"ccF" = (/obj/effect/landmark/start/chaplain,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/chapel/main/monastery) -"ccH" = (/turf/open/floor/plasteel/chapel,/area/chapel/main/monastery) -"ccJ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ccM" = (/obj/structure/chair,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"ccN" = (/obj/structure/closet/crate/medical,/obj/item/stack/medical/gauze,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"ccO" = (/obj/structure/bed,/obj/item/bedsheet/random,/obj/structure/table/optable,/turf/open/floor/plating,/area/maintenance/department/engine) -"ccQ" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering) -"ccR" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/gps/engineering,/turf/open/floor/plating,/area/engine/engineering) -"ccW" = (/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/structure/table,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"ccX" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"ccY" = (/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering) -"cda" = (/obj/structure/reflector/single/anchored{dir = 10},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) -"cdc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cdg" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cdh" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cdi" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/disposal/incinerator) -"cdj" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Atmospherics External Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"cdk" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"cdl" = (/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"cdm" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"cdo" = (/turf/open/floor/carpet,/area/chapel/office) -"cdp" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/carpet/black,/area/chapel/office) -"cdq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/chapel/main/monastery) -"cdr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cds" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Port Access"; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdu" = (/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main/monastery) -"cdw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdC" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cdD" = (/obj/structure/table,/obj/item/trash/plate,/obj/item/kitchen/fork,/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"cdE" = (/obj/structure/chair,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/engine) -"cdI" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cdK" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/reagent_dispensers/fueltank/high,/turf/open/floor/plasteel,/area/engine/engineering) -"cdL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cdM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/camera{c_tag = "Engineering Port Aft"; dir = 1; pixel_x = 23},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cdO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"cdR" = (/obj/machinery/door/airlock/engineering/glass{name = "Laser Room"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cdT" = (/obj/machinery/power/emitter/anchored{dir = 4; state = 2},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering) -"cdW" = (/obj/structure/reflector/box/anchored,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ceb" = (/obj/machinery/computer/rdconsole/production{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"cec" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) -"ced" = (/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"cee" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) -"cef" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) -"ceg" = (/obj/machinery/door/airlock/centcom{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/chapel/office) -"cei" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cej" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cek" = (/obj/machinery/door/airlock/grunge{name = "Chapel"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cel" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cen" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceo" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/asteroid,/area/chapel/asteroid/monastery) -"ceq" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/engineering) -"cer" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications Transit Tube"; req_access_txt = "10; 61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cet" = (/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"ceu" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engineering) -"cey" = (/obj/structure/girder,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ceA" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) -"ceB" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/chapel/office) -"ceC" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Crematorium"; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ceE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"ceF" = (/obj/structure/filingcabinet,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ceH" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceK" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceL" = (/obj/structure/table/wood/fancy,/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 8},/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ceT" = (/obj/effect/turf_decal/stripes/line,/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/engineering) -"ceU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching telecomms."; layer = 4; name = "Telecomms Telescreen"; network = list("tcomms"); pixel_y = 28},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ceV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"ceX" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"cfa" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfd" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cff" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) -"cfl" = (/obj/machinery/door/airlock/grunge{name = "Chapel Access"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfm" = (/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) -"cfn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfr" = (/obj/structure/transit_tube_pod,/obj/structure/transit_tube/station/reverse{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering) -"cfs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfu" = (/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine Room"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/engine,/area/engine/engineering) -"cfC" = (/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cfD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 1; name = "Monastery APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cfH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/main/monastery) -"cfI" = (/turf/open/floor/plating,/area/chapel/main/monastery) -"cfJ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/main/monastery) -"cfL" = (/obj/machinery/camera{c_tag = "Monastery Asteroid Starboard Aft"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/asteroid/monastery) -"cfN" = (/turf/closed/mineral,/area/chapel/asteroid/monastery) -"cfO" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering) -"cfP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfQ" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"cfS" = (/obj/structure/table/reinforced,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/tank/internals/emergency_oxygen/engi,/obj/item/clothing/mask/breath{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cfX" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"cfY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Mix to Engine"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) -"cgb" = (/obj/machinery/airalarm{pixel_y = 22},/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cgd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cgf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/main/monastery) -"cgg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cgk" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/camera{c_tag = "Monastery Garden"; network = list("ss13","monastery")},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgm" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/watermelon/holy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cgp" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) -"cgr" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/engine/engineering) -"cgs" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/engine/engineering) -"cgu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"cgv" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"cgx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"cgG" = (/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/chapel/main/monastery) -"cgH" = (/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgI" = (/mob/living/simple_animal/butterfly,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgJ" = (/obj/item/cultivator,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgK" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/sugarcane,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cgL" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/head/nun_hood,/obj/machinery/button/door{id = "Cell1"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cgM" = (/obj/structure/dresser,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cgN" = (/obj/structure/table/wood,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light/small{dir = 4},/obj/item/flashlight/lantern,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cgO" = (/obj/structure/toilet/secret/low_loot{pixel_y = 8},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"cgP" = (/obj/structure/transit_tube,/turf/open/floor/plating/airless,/area/space/nearstation) -"cgQ" = (/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"cgU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cgV" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"cgY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) -"chb" = (/obj/machinery/camera{c_tag = "Monastery Kitchen"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chc" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chd" = (/obj/item/clothing/suit/apron/chef,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chf" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"chi" = (/obj/structure/flora/ausbushes/pointybush,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chj" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chk" = (/obj/structure/sink/puddle,/obj/item/reagent_containers/glass/bucket,/obj/effect/landmark/event_spawn,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chl" = (/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cho" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"chp" = (/obj/machinery/door/airlock{id_tag = "Cell1"; name = "Cell 1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chr" = (/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cht" = (/obj/machinery/door/airlock{name = "Bathroom"},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chu" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"chv" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"chB" = (/obj/item/seeds/banana,/obj/item/seeds/grass,/obj/item/seeds/grape,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chC" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chD" = (/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) -"chG" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/wheat,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"chJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/main/monastery) -"chK" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/instrument/violin,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chL" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chM" = (/obj/structure/bed,/obj/item/bedsheet/green,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"chN" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/item/soap/homemade,/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"chU" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chV" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chW" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 3; pixel_y = 4},/obj/item/reagent_containers/food/condiment/peppermill,/obj/item/storage/box/ingredients/wildcard{layer = 3.1},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chX" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/flour,/obj/item/kitchen/rollingpin,/obj/item/kitchen/knife,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chY" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"chZ" = (/obj/structure/reagent_dispensers/watertank/high,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cib" = (/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cic" = (/obj/structure/flora/ausbushes/ywflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cid" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cif" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/stack/cable_coil/yellow,/turf/open/floor/plating,/area/maintenance/department/engine) -"cig" = (/obj/structure/transit_tube/crossing,/turf/open/floor/plating/airless,/area/space/nearstation) -"cio" = (/obj/structure/closet/cabinet,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/head/nun_hood,/obj/machinery/button/door{id = "Cell2"; name = "Cell Bolt Control"; normaldoorcontrol = 1; pixel_x = -25; specialfunctions = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"cip" = (/obj/machinery/light/small{dir = 4},/obj/structure/easel,/obj/item/canvas/twentythreeXnineteen,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"ciq" = (/obj/structure/toilet/secret/low_loot{pixel_y = 8},/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"cit" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/supermatter) -"civ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"ciy" = (/obj/item/reagent_containers/glass/bucket,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"ciz" = (/obj/structure/closet/crate/coffin,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciE" = (/obj/structure/flora/ausbushes/genericbush,/obj/machinery/light/small{dir = 4},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciF" = (/obj/machinery/door/airlock{id_tag = "Cell2"; name = "Cell 2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"ciG" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Aft"; dir = 1; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"ciI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Gas to Chamber"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) -"ciJ" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciK" = (/obj/structure/table,/obj/item/crowbar,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciN" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciO" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/condiment/saltshaker{layer = 3.1; pixel_x = -2; pixel_y = 2},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 5; pixel_y = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciR" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ciS" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciT" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/harebell,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciV" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciW" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/pointybush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"ciX" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/storage/crayons,/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"ciY" = (/obj/structure/bed,/obj/item/bedsheet/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/grimy,/area/chapel/main/monastery) -"ciZ" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/item/bikehorn/rubberducky,/turf/open/floor/plasteel/showroomfloor,/area/chapel/main/monastery) -"cjf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjl" = (/obj/machinery/door/airlock/grunge{name = "Monastery Cemetary"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjm" = (/turf/closed/wall,/area/maintenance/department/chapel/monastery) -"cjo" = (/obj/machinery/hydroponics/soil,/obj/machinery/light/small,/obj/item/seeds/poppy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cjp" = (/turf/closed/wall,/area/library) -"cjq" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/palebush,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cjr" = (/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cjt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) -"cju" = (/turf/closed/mineral,/area/asteroid/nearstation/bomb_site) -"cjv" = (/turf/closed/wall,/area/asteroid/nearstation/bomb_site) -"cjw" = (/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/asteroid/nearstation/bomb_site) -"cjx" = (/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"cjB" = (/obj/docking_port/stationary{dir = 8; dwidth = 11; height = 22; id = "whiteship_home"; name = "monastery"; width = 35},/turf/open/space/basic,/area/space) -"cjC" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/main/monastery) -"cjH" = (/obj/machinery/door/airlock/grunge{name = "Chapel Garden"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cjO" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/sheet/metal{amount = 20; layer = 3.1},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cjP" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cjQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library) -"cjR" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) -"cjV" = (/obj/machinery/camera/preset/toxins,/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"cjZ" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/wrench,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cka" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckb" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) -"ckc" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckd" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cke" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckf" = (/obj/machinery/power/terminal{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckg" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckh" = (/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cki" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Air Out"},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckk" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/stack/rods/fifty,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckl" = (/obj/machinery/light/small{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/library) -"cko" = (/obj/structure/bookcase/random/religion,/turf/open/floor/plasteel/dark,/area/library) -"ckp" = (/obj/structure/bookcase/random/religion,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckt" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"cku" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main/monastery) -"ckv" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/machinery/door/window/eastleft{dir = 8; name = "Mass Driver"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckw" = (/obj/machinery/mass_driver{id = "chapelgun"},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cky" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckz" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckA" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 1},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckB" = (/obj/machinery/atmospherics/pipe/manifold/general/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckC" = (/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckD" = (/obj/structure/chair/wood/normal,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) -"ckG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckH" = (/turf/open/floor/plasteel/dark,/area/library) -"ckI" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckJ" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering) -"ckK" = (/turf/closed/mineral/random/low_chance,/area/asteroid/nearstation/bomb_site) -"ckL" = (/obj/item/beacon,/turf/open/floor/plating/airless,/area/asteroid/nearstation/bomb_site) -"ckM" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckN" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ckO" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckP" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"ckR" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"ckS" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/item/pen,/obj/machinery/camera{c_tag = "Monastery Library"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckT" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckU" = (/obj/machinery/bookbinder,/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckV" = (/obj/structure/bookcase/random/reference,/turf/open/floor/plasteel/dark,/area/library/lounge) -"ckW" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/plasteel/dark,/area/library) -"ckX" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/plasteel/dark,/area/library/lounge) -"clb" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "mass driver door"},/turf/open/floor/plating,/area/chapel/main/monastery) -"cld" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/maintenance/department/chapel/monastery) -"cle" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel/monastery) -"clf" = (/obj/machinery/light/small{dir = 1},/obj/item/storage/box/lights/bulbs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"clg" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cli" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"clj" = (/obj/item/flashlight/lantern{icon_state = "lantern-on"},/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"clk" = (/obj/machinery/light/small{dir = 8},/obj/machinery/libraryscanner,/turf/open/floor/plasteel/dark,/area/library/lounge) -"clm" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/dark,/area/library/lounge) -"cln" = (/obj/structure/bookcase/random/adult,/turf/open/floor/plasteel/dark,/area/library/lounge) -"clp" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/dark,/area/library) -"cls" = (/obj/effect/spawner/lootdrop/maintenance,/turf/closed/mineral,/area/asteroid/nearstation/bomb_site) -"clv" = (/turf/closed/mineral/iron,/area/asteroid/nearstation/bomb_site) -"clw" = (/turf/closed/wall/r_wall,/area/tcommsat/computer) -"clz" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating/airless,/area/space/nearstation) -"clA" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"clB" = (/obj/structure/cable/yellow{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/tcommsat/computer) -"clC" = (/obj/structure/window/reinforced/fulltile,/obj/structure/transit_tube,/turf/open/floor/plating,/area/tcommsat/computer) -"clD" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"clE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) -"clF" = (/obj/effect/spawner/lootdrop/maintenance,/turf/closed/mineral/random/low_chance,/area/asteroid/nearstation/bomb_site) -"clG" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/computer) -"clH" = (/obj/structure/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"clJ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"clL" = (/turf/closed/wall,/area/tcommsat/computer) -"clM" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Waste to Space"},/turf/open/floor/plating,/area/tcommsat/computer) -"clN" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/tcommsat/computer) -"clP" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"clQ" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"clR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"clS" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4"},/turf/open/floor/plasteel,/area/tcommsat/computer) -"clT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/turf/closed/wall,/area/tcommsat/computer) -"clU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/item/wrench,/obj/structure/cable/yellow{icon_state = "2-8"},/turf/open/floor/plating,/area/tcommsat/computer) -"clV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/tcommsat/computer) -"clX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/tcommsat/computer) -"clY" = (/obj/item/beacon,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"clZ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cma" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Telecommunications Maintenance"; req_access_txt = "61"},/turf/open/floor/plating,/area/tcommsat/computer) -"cmb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"cmc" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/tcommsat/computer) -"cmd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cme" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) -"cmf" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/radio,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmg" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Telecomms Admin"; departmentType = 5; name = "Telecomms RC"; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmh" = (/obj/machinery/door/airlock/engineering{name = "Telecommunications Chamber"; req_access_txt = "61"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmj" = (/obj/machinery/door/airlock/command/glass{name = "Control Room"; req_access_txt = "19; 61"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmk" = (/obj/machinery/power/apc{areastring = "/area/tcommsat/computer"; dir = 1; name = "Telecomms Monitoring APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cml" = (/obj/machinery/announcement_system,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmm" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/dark,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmp" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmq" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"cmr" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cms" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmt" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Port"; dir = 8; network = list("tcomms")},/turf/open/space,/area/space/nearstation) -"cmu" = (/obj/machinery/status_display/evac{pixel_x = -32},/obj/structure/table,/obj/item/paper_bin{pixel_x = -2; pixel_y = 5},/obj/item/pen,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmv" = (/obj/machinery/computer/telecomms/monitor{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmw" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/engineering/glass{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) -"cmx" = (/obj/machinery/computer/telecomms/server{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmy" = (/obj/machinery/computer/message_monitor{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cmz" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Starboard"; dir = 4; network = list("tcomms")},/turf/open/space,/area/space/nearstation) -"cmB" = (/turf/closed/wall/r_wall,/area/tcommsat/server) -"cmF" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) -"cmG" = (/obj/machinery/blackbox_recorder,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmH" = (/obj/machinery/telecomms/message_server,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmK" = (/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cmL" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmM" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmN" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmO" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmP" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmQ" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmR" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cmU" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cmV" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmW" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmX" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmY" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cmZ" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cna" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnb" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnc" = (/obj/machinery/power/terminal,/obj/machinery/ntnet_relay,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnd" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cne" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnj" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnk" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnl" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnm" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnn" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cno" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"cnp" = (/obj/machinery/camera/preset/toxins{c_tag = "Bomb Testing Asteroid Aft"; dir = 1},/turf/open/floor/plating/asteroid/airless,/area/asteroid/nearstation/bomb_site) -"cnq" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/asteroid/nearstation/bomb_site) -"cnr" = (/obj/structure/table,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cns" = (/obj/structure/table,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cnt" = (/obj/structure/table,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cnu" = (/obj/machinery/camera/motion{c_tag = "Telecomms Server Room"; dir = 1; network = list("tcomms")},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cnv" = (/obj/structure/table,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cnw" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/micro_laser,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cnx" = (/obj/structure/table,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/scanning_module,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"cny" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Port Aft"; network = list("tcomms")},/turf/open/space,/area/space/nearstation) -"cnz" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms External Starboard Aft"; network = list("tcomms")},/turf/open/space,/area/space/nearstation) -"cnC" = (/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/aisat_interior"; name = "AI Satellite turret control"; pixel_x = -5; pixel_y = -24},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/aisat_interior) -"cnD" = (/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) -"cnE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice,/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) -"cnG" = (/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAS) -"cnH" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/ai_monitored/turret_protected/AIsatextAP) -"cnJ" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/wardrobe/sec_wardrobe,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnN" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/camera{c_tag = "Brig Equipment Room"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 29},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnP" = (/obj/machinery/vending/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnQ" = (/obj/machinery/suit_storage_unit/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnT" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnV" = (/obj/structure/punching_bag,/turf/open/floor/plasteel/showroomfloor,/area/security/main) -"cnX" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cod" = (/obj/structure/table,/obj/item/clothing/under/color/grey,/obj/machinery/power/apc{dir = 1; name = "Dormitory APC"; pixel_y = 25},/obj/structure/cable{icon_state = "0-2"},/obj/structure/sign/poster/official/random{pixel_x = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/dorms) -"coe" = (/obj/machinery/power/apc{dir = 8; name = "Dormitory Maintenance APC"; pixel_x = -24},/obj/structure/cable,/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"coi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"coj" = (/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"cok" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/comfy{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"col" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/dorms) -"com" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"con" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"coo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"cop" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitories"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"cor" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "public external airlock"},/turf/open/floor/plating,/area/storage/emergency/starboard) -"cos" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cot" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cou" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"coy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"coz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"coB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Central Primary Hallway Bridge"; dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"coF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/bar) -"coG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"coH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/bar) -"coJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/bar) -"coL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) -"coN" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"coV" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/primary/central) -"coW" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"cpa" = (/obj/machinery/vending/boozeomat,/turf/closed/wall,/area/crew_quarters/bar) -"cpb" = (/obj/structure/table/glass,/obj/machinery/light/small{dir = 1},/obj/item/reagent_containers/food/drinks/bottle/goldschlager{pixel_x = -8; pixel_y = 15},/obj/item/reagent_containers/food/drinks/bottle/vermouth{pixel_x = 3; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/whiskey{pixel_x = 7; pixel_y = 16},/obj/item/reagent_containers/food/drinks/bottle/kahlua{pixel_x = 9; pixel_y = 7},/obj/item/reagent_containers/food/drinks/bottle/absinthe{pixel_x = -5; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpc" = (/obj/machinery/chem_dispenser/drinks,/obj/structure/table,/obj/machinery/camera{c_tag = "Bar Drinks"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpe" = (/obj/machinery/door/airlock{name = "Bar Access"; req_access_txt = "25"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpg" = (/obj/machinery/button/door{id = "barshutters"; name = "Bar Lockdown"; pixel_y = 26; req_access_txt = "28"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cph" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpk" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 19},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpl" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpm" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/pie/cream,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpn" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/spaghetti,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpo" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpq" = (/obj/machinery/deepfryer,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cps" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpt" = (/obj/item/beacon,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpu" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cpw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpx" = (/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/button/door{id = "kitchenshutters"; name = "Kitchen Shutters Control"; pixel_x = 5; pixel_y = -24; req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -6; pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpz" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpA" = (/obj/structure/rack,/obj/item/reagent_containers/food/snacks/mint,/obj/item/storage/box/drinkingglasses,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpB" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"cpC" = (/obj/machinery/door/poddoor/shutters/preopen{id = "barshutters"; name = "bar shutters"},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/bar) -"cpH" = (/obj/effect/turf_decal/plaque{icon_state = "L1"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpI" = (/obj/effect/turf_decal/plaque{icon_state = "L3"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/plaque{icon_state = "L5"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpK" = (/obj/effect/turf_decal/plaque{icon_state = "L9"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpL" = (/obj/effect/turf_decal/plaque{icon_state = "L11"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpM" = (/obj/effect/turf_decal/plaque{icon_state = "L13"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/plaque{icon_state = "L6"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpQ" = (/obj/effect/turf_decal/plaque{icon_state = "L10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L12"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpT" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpU" = (/obj/item/kirbyplants,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cpY" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cpZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqa" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqc" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqd" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqe" = (/obj/effect/turf_decal/plaque,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Med"; location = "Sci9"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqh" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cql" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division Hallway"; dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqy" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/maintenance/department/engine) -"cqz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqD" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqE" = (/obj/item/kirbyplants{icon_state = "plant-18"; layer = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqG" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cqH" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/dock) -"cqS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/space/nearstation) -"cqU" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) -"cqV" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chief_engineer,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cqW" = (/obj/structure/chair,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"cqX" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"crb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/chapel/office) -"cre" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"crg" = (/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crh" = (/obj/machinery/button/crematorium{id = "foo"; pixel_x = 25},/obj/structure/bodycontainer/crematorium{id = "foo"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cri" = (/obj/machinery/door/poddoor{id = "Secure Storage"; name = "secure storage"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/engine/engineering) -"crj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crk" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crl" = (/obj/structure/sign/warning/vacuum/external,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"crm" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space,/area/space/nearstation) -"crt" = (/obj/structure/table/wood/fancy,/obj/item/folder,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/chapel/office) -"cru" = (/obj/effect/decal/cleanable/blood/old,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crv" = (/turf/open/floor/plasteel/dark,/area/chapel/office) -"crx" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cry" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space,/area/space/nearstation) -"crz" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"crA" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"crB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"crC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"crD" = (/obj/structure/table/wood/fancy,/obj/item/storage/box/bodybags,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) -"crG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"crH" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crK" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Chapel Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crL" = (/obj/structure/chair/wood/normal,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main/monastery) -"crM" = (/obj/structure/chair/wood/normal,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main/monastery) -"crN" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Chapel Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crO" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"crT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"crU" = (/obj/machinery/power/apc{dir = 4; name = "Chapel Office APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"crX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"crY" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/breadslice/plain,/obj/item/reagent_containers/food/snacks/breadslice/plain{pixel_y = 4},/obj/item/reagent_containers/food/snacks/breadslice/plain{pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csd" = (/turf/open/floor/carpet/black,/area/chapel/office) -"cse" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/carpet/black,/area/chapel/office) -"csf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"csg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"csh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"csi" = (/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"csk" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/wine{pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csn" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; pixel_x = -32},/obj/structure/closet,/obj/item/storage/backpack/cultpack,/obj/item/clothing/head/nun_hood,/obj/item/clothing/suit/chaplain/nun,/obj/item/clothing/suit/chaplain/holidaypriest,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cso" = (/obj/structure/table/wood,/obj/item/nullrod,/turf/open/floor/carpet/black,/area/chapel/office) -"csp" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/carpet/black,/area/chapel/office) -"csq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"csr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"css" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"csu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"csv" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csy" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/engine) -"csB" = (/obj/effect/landmark/start/chaplain,/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/carpet/black,/area/chapel/office) -"csC" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/holywater{pixel_x = -2; pixel_y = 2},/turf/open/floor/carpet/black,/area/chapel/office) -"csE" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"csF" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"csG" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"csM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Chapel Office Tunnel"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/sand,/turf/open/floor/plasteel,/area/chapel/office) -"csN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Chapel Starboard Access"; network = list("ss13","monastery")},/obj/structure/chair/wood/normal,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"csU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/chapel/main/monastery) -"csY" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/newscaster{pixel_x = -32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cta" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cte" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/chapel/office) -"ctg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cth" = (/obj/structure/table/wood/fancy,/obj/item/storage/fancy/candle_box,/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctu" = (/obj/machinery/light/small,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) -"ctJ" = (/obj/machinery/camera{c_tag = "Chapel Office"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/office) -"ctK" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctL" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctM" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctN" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Monastery Cloister Fore"; network = list("ss13","monastery")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"ctQ" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/main/monastery) -"ctS" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/space/nearstation) -"ctX" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/turf/open/floor/carpet,/area/chapel/office) -"cuc" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Xenobiology Central"; dir = 1; network = list("ss13","rd")},/obj/machinery/firealarm{dir = 1; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cui" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"cuk" = (/obj/structure/closet{name = "beekeeping wardrobe"},/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/suit/beekeeper_suit,/obj/item/clothing/head/beekeeper_head,/obj/item/clothing/head/beekeeper_head,/obj/item/clothing/head/beekeeper_head,/obj/item/melee/flyswatter,/obj/item/melee/flyswatter,/obj/item/melee/flyswatter,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cul" = (/obj/machinery/chem_master/condimaster,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cum" = (/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cun" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light/small{dir = 1},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuo" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cup" = (/obj/machinery/hydroponics/soil,/obj/machinery/light/small{dir = 1},/obj/item/seeds/watermelon/holy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cus" = (/obj/structure/closet{name = "beekeeping supplies"},/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/obj/item/honey_frame,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cut" = (/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuu" = (/obj/item/storage/bag/plants,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 24},/obj/item/storage/bag/plants/portaseeder,/obj/item/storage/bag/plants/portaseeder,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuv" = (/obj/structure/chair/wood/normal{dir = 4},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuw" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cux" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/mug/tea,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuy" = (/obj/structure/chair/wood/normal{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Monastery Cloister Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuA" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/beebox,/obj/item/queen_bee/bought,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuB" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuE" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/carrot,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuG" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuH" = (/obj/item/hatchet,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuI" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuJ" = (/obj/item/shovel/spade,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuK" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Monastery Dining Room"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuM" = (/obj/machinery/power/apc{dir = 8; name = "Garden APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/light/small{dir = 8},/obj/structure/flora/ausbushes/sparsegrass,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuO" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/sugarcane,/obj/machinery/light/small{dir = 4},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cuP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/mineral/iron,/area/chapel/main/monastery) -"cuR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cuS" = (/obj/machinery/door/airlock{name = "Kitchen"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuU" = (/obj/machinery/door/airlock{name = "Dining Room"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuV" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuW" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuX" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock{name = "Garden"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuY" = (/obj/machinery/door/airlock{name = "Garden"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cuZ" = (/obj/item/wrench,/turf/open/floor/plasteel,/area/chapel/main/monastery) -"cvb" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/wheat,/obj/machinery/light/small{dir = 8},/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvd" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cve" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvf" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"cvg" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvh" = (/obj/machinery/hydroponics/soil,/obj/item/seeds/poppy,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvi" = (/obj/structure/flora/ausbushes/sparsegrass,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvj" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/sparsegrass,/obj/machinery/light/small,/turf/open/floor/grass,/area/hydroponics/garden/monastery) -"cvk" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/camera{c_tag = "Monastery Cloister Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvq" = (/obj/machinery/camera{c_tag = "Monastery Secondary Dock"; dir = 8; network = list("ss13","monastery")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastleft{dir = 1; name = "Coffin Storage"; req_one_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvs" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastleft{base_state = "right"; dir = 1; icon_state = "right"; name = "Coffin Storage"; req_one_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvA" = (/obj/machinery/door/airlock/external{name = "Dock Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvB" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvC" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvE" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/kirbyplants{icon_state = "plant-21"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvF" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvH" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvI" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Monastery Cloister Aft"; dir = 1; network = list("ss13","monastery")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvJ" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvR" = (/obj/machinery/light/small{dir = 8},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/machinery/camera{c_tag = "Monastery Cemetary"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvS" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvT" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/chapel/main/monastery) -"cvV" = (/obj/structure/chair/wood/normal,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cvX" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"cvY" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"cvZ" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"cwa" = (/turf/closed/wall/mineral/iron,/area/maintenance/department/chapel/monastery) -"cwc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Monastery Maintenance"; req_one_access_txt = "22;24;10;11;37"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwe" = (/turf/closed/wall/mineral/iron,/area/library/lounge) -"cwg" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) -"cwj" = (/obj/item/storage/box/matches{pixel_x = -3; pixel_y = 8},/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main/monastery) -"cwl" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/storage/fancy/candle_box,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwn" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/storage/toolbox/mechanical,/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwo" = (/obj/machinery/power/apc{dir = 1; name = "Monastery Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwr" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "Library Lounge APC"; pixel_x = 24},/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cww" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwx" = (/obj/structure/table/wood/fancy,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/chapel/main/monastery) -"cwy" = (/obj/structure/table/wood/fancy,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/candle,/obj/item/candle{pixel_x = 6; pixel_y = 8},/obj/item/candle{pixel_x = -8; pixel_y = 6},/turf/open/floor/carpet,/area/chapel/main/monastery) -"cwz" = (/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/item/clothing/under/misc/burial,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwA" = (/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwE" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwF" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwG" = (/obj/machinery/light/small{dir = 4},/obj/machinery/button/massdriver{id = "chapelgun"; pixel_x = 28},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/library/lounge) -"cwM" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space,/area/space/nearstation) -"cwO" = (/obj/item/flashlight/lantern,/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"cwR" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"cwS" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"cwU" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"cxe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) -"cxg" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/space/basic,/area/space/nearstation) -"cxh" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 4; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"cxk" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/turf/open/space/basic,/area/space/nearstation) -"cxn" = (/obj/machinery/newscaster{pixel_x = -32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) -"cxt" = (/obj/effect/turf_decal/box/corners{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"cxz" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/library/lounge) -"cxC" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxD" = (/obj/effect/turf_decal/stripes/corner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall,/area/library/lounge) -"cxJ" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/library/lounge) -"cxK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxL" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxM" = (/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/library/lounge) -"cxX" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Monastery Archives Access Tunnel"; dir = 4; network = list("ss13","monastery")},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cxY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cyl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cym" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cyy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall,/area/library/lounge) -"cyz" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cyA" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"cyB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/library/lounge) -"cyL" = (/obj/structure/lattice,/obj/structure/lattice,/turf/closed/mineral,/area/chapel/asteroid/monastery) -"cyM" = (/obj/structure/lattice,/turf/closed/mineral,/area/chapel/asteroid/monastery) -"cyP" = (/obj/structure/bookcase/random/nonfiction,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"cyQ" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/camera{c_tag = "Monastery Archives Fore"; network = list("ss13","monastery")},/obj/machinery/firealarm{pixel_y = 29},/turf/open/floor/plasteel/dark,/area/library) -"cyR" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/dark,/area/library) -"cyS" = (/obj/structure/bookcase/random/religion,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"cyT" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/obj/item/pen,/turf/open/floor/plasteel/dark,/area/library) -"cyU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/library) -"cyY" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cyZ" = (/obj/structure/displaycase/trophy,/turf/open/floor/plasteel/dark,/area/library) -"czl" = (/obj/structure/chair/wood/normal,/turf/open/floor/carpet,/area/library) -"czo" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/open/floor/plasteel/dark,/area/library) -"czp" = (/obj/structure/table/wood,/obj/item/disk/nuclear/fake,/obj/item/barcodescanner,/turf/open/floor/plasteel/dark,/area/library) -"czq" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/library) -"czr" = (/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/library) -"czt" = (/obj/structure/table/wood/fancy,/obj/item/storage/photo_album,/turf/open/floor/carpet,/area/library) -"czu" = (/obj/structure/table/wood,/obj/item/paper_bin{layer = 2.9; pixel_x = -2; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/library) -"czv" = (/obj/structure/chair/wood/normal{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"czw" = (/obj/machinery/newscaster{pixel_x = 32},/turf/open/floor/plasteel/dark,/area/library) -"czB" = (/obj/structure/table/wood/fancy,/obj/item/storage/fancy/candle_box,/turf/open/floor/carpet,/area/library) -"czC" = (/obj/structure/table/wood/fancy,/obj/item/flashlight/lantern{icon_state = "lantern-on"; pixel_y = 8},/turf/open/floor/carpet,/area/library) -"czD" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/library) -"czH" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Monastery Archives Port"; dir = 4; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) -"czI" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/carpet,/area/library) -"czL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/library) -"czM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/library) -"czN" = (/obj/structure/table/wood,/obj/item/storage/bag/books,/turf/open/floor/plasteel/dark,/area/library) -"czO" = (/obj/structure/table/wood,/obj/item/instrument/saxophone,/turf/open/floor/plasteel/dark,/area/library) -"czP" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/coin/gold,/turf/open/floor/plasteel/dark,/area/library) -"czQ" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Monastery Archives Starboard"; dir = 8; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) -"czV" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"czW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"czY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"czZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"cAg" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAr" = (/obj/machinery/light/small{dir = 8},/obj/machinery/door/window/northright{base_state = "left"; dir = 2; icon_state = "left"; name = "Curator Desk Door"; req_access_txt = "37"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAs" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-05"; pixel_y = 10},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAt" = (/obj/structure/table/wood,/obj/item/flashlight/lantern{pixel_y = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAu" = (/obj/structure/table/wood,/obj/item/clothing/head/pharaoh,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAv" = (/obj/structure/table/wood,/obj/item/camera,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAy" = (/obj/machinery/light/small{dir = 4},/obj/machinery/door/window/northright{dir = 2; name = "Curator Desk Door"; req_access_txt = "37"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAB" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"cAC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/wood/wings{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"cAD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/wood/wings{dir = 1},/obj/effect/landmark/start/librarian,/turf/open/floor/plasteel/dark,/area/library) -"cAH" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/library) -"cAJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/library) -"cAK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/library) -"cAM" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library) -"cAQ" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"cAS" = (/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/plasteel/dark,/area/library) -"cAT" = (/obj/structure/destructible/cult/tome,/turf/open/floor/plasteel/dark,/area/library) -"cAU" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi'; icon_state = "minibar"; name = "skeletal minibar"},/obj/item/book/codex_gigas,/obj/machinery/camera{c_tag = "Monastery Archives Aft"; dir = 1; network = list("ss13","monastery")},/turf/open/floor/plasteel/dark,/area/library) -"cAV" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/plasteel/dark,/area/library) -"cBi" = (/obj/machinery/flasher/portable,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/armory) -"cBk" = (/obj/machinery/vending/boozeomat/pubby_maint,/turf/closed/wall,/area/maintenance/department/crew_quarters/dorms) -"cBl" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBm" = (/obj/item/cigbutt/cigarbutt,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"cBn" = (/obj/structure/extinguisher_cabinet{pixel_x = 24},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) -"cBo" = (/obj/structure/table,/obj/item/lighter,/obj/structure/light_construct/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBp" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/bottle/gin{pixel_y = 8},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBq" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBr" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"cBs" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"cBv" = (/obj/item/cigbutt/roach,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"cBw" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) -"cBx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/button/door{id = "supplybridge"; name = "Space Bridge Control"; pixel_y = 27},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/button/door{id = "supplybridge"; name = "Space Bridge Control"; pixel_y = 27},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"cBA" = (/obj/structure/grille/broken,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/crew_quarters/dorms) -"cBB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"cBK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"cBL" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_one_access_txt = "12;45;5;9"},/turf/open/floor/plating,/area/maintenance/department/engine) -"cBM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/office) -"cBR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"cBS" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/engine/engineering) -"cBT" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating/airless,/area/maintenance/disposal/incinerator) -"cBU" = (/turf/closed/wall/r_wall,/area/gateway) -"cCl" = (/turf/closed/wall/r_wall,/area/science/lab) -"cCt" = (/turf/open/floor/plasteel/white,/area/science/lab) -"cCB" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"cCF" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"cCH" = (/obj/effect/turf_decal/bot/left,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"cCI" = (/obj/machinery/status_display/ai,/turf/closed/wall/r_wall,/area/engine/supermatter) -"cCP" = (/obj/effect/turf_decal/bot/right,/turf/open/floor/plasteel/white,/area/engine/gravity_generator) -"cCR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/maintenance/department/chapel/monastery) -"cCS" = (/obj/machinery/rnd/production/techfab/department/security,/turf/open/floor/plasteel/dark,/area/security/main) -"cCT" = (/obj/machinery/rnd/production/techfab/department/cargo,/turf/open/floor/plasteel,/area/quartermaster/storage) -"cCU" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/tcomms{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/engineering_guide,/turf/open/floor/plasteel,/area/engine/engineering) -"cCV" = (/obj/machinery/rnd/production/protolathe/department/engineering,/turf/open/floor/plasteel,/area/engine/engineering) -"cCW" = (/obj/machinery/vending/games,/turf/open/floor/plasteel/dark,/area/library) -"cCX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"cCY" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"cCZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"cDa" = (/turf/closed/wall,/area/quartermaster/warehouse) -"cDB" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"cFB" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space) -"cHS" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Firing Range"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"cJo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"cKA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"cKV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cLw" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/engine/engineering) -"cOp" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/turf/open/floor/plasteel,/area/science/xenobiology) -"cPy" = (/obj/machinery/atmospherics/components/binary/pump,/obj/structure/sign/warning/nosmoking{pixel_x = -32; pixel_y = 32},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cPO" = (/obj/item/chair/stool,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/department/crew_quarters/dorms) -"cPT" = (/obj/structure/table/glass,/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/structure/window/reinforced,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cSJ" = (/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = -2; pixel_y = 9},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 5; pixel_y = 9},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = -3; pixel_y = 1},/obj/item/reagent_containers/glass/beaker/cryoxadone{pixel_x = 6; pixel_y = 2},/obj/item/reagent_containers/syringe/epinephrine{pixel_x = 3; pixel_y = -2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{areastring = "/area/medical/sleeper"; dir = 4; name = "Treatment Center APC"; pixel_x = 24},/obj/structure/cable,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"cSK" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/eastright{base_state = "left"; icon_state = "left"; name = "Research Division Delivery"; req_access_txt = "47"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 8; freq = 1400; location = "Research Division"},/turf/open/floor/plasteel/dark,/area/science/lab) -"cXW" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"cZt" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/structure/window/plasma/reinforced{dir = 8},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) -"daY" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) -"dbi" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"dci" = (/obj/structure/rack,/obj/item/gun/energy/laser/practice,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"dcL" = (/obj/structure/barricade/wooden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"deJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/gps/mining{gpstag = "MINE_PUB"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"dgg" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"dgj" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/supermatter) -"dgz" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"dgI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"dhz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair{dir = 8; name = "Defense"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"dir" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"dkR" = (/obj/effect/turf_decal/box/corners{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"dmP" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/department/science) -"dmT" = (/obj/machinery/shieldwallgen/xenobiologyaccess,/obj/structure/cable{icon_state = "0-8"},/obj/structure/sign/warning/electricshock{pixel_x = 32},/turf/open/floor/plating,/area/science/xenobiology) -"dnS" = (/obj/machinery/atmospherics/components/binary/pump{name = "Mix Bypass"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"doo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"dpa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"dpb" = (/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/chapel/office) -"dpc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main/monastery) -"dps" = (/obj/machinery/status_display/ai,/turf/closed/wall,/area/quartermaster/qm) -"dqw" = (/obj/machinery/door/airlock/maintenance{req_one_access_txt = "12; 55"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/science) -"dqG" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"dqY" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"dse" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"dsv" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plating,/area/maintenance/department/cargo) -"dsz" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"dtm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"duF" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/large{pixel_x = 1; pixel_y = 5},/obj/item/reagent_containers/glass/beaker{pixel_x = -2},/obj/item/reagent_containers/glass/beaker{pixel_x = 2; pixel_y = -6},/turf/open/floor/plasteel/dark,/area/science/lab) -"duQ" = (/obj/machinery/camera{c_tag = "Departure Lounge Aft"; dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"dxc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"dye" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/structure/sign/departments/science{pixel_y = 32},/obj/item/kitchen/knife,/turf/open/floor/plating,/area/maintenance/department/engine) -"dym" = (/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) -"dAF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/science/mixing) -"dAG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/machinery/meter,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"dEy" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/reflector/double/anchored{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"dFJ" = (/turf/open/floor/engine,/area/engine/supermatter) -"dHr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/button/door{id = "engsm"; name = "Radiation Shutters Control"; pixel_y = 24; req_access_txt = "10"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"dHZ" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/chemist,/obj/machinery/button/door{id = "chemistry_shutters"; name = "Shutters Control"; pixel_x = 26; pixel_y = 4; req_access_txt = "5; 33"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"dJk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plating,/area/engine/atmos) -"dJm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Pit"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/engine) -"dKs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"dLY" = (/obj/structure/table,/obj/item/assembly/igniter,/turf/open/floor/plating,/area/maintenance/department/cargo) -"dMB" = (/turf/open/floor/plasteel,/area/quartermaster/sorting) -"dMG" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"dMI" = (/obj/item/clothing/suit/apron/surgical,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"dMO" = (/obj/structure/urinal{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) -"dNr" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/sign/warning{pixel_y = -32},/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/maintenance/department/engine) -"dSp" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{dir = 1},/turf/open/floor/plating/airless,/area/engine/engineering) -"dSr" = (/obj/item/chair,/turf/open/floor/wood,/area/maintenance/department/engine) -"dTV" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"dVI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/item/wrench,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/execution/transfer) -"dVJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) -"dWk" = (/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) -"dWp" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Engineering External Access"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering) -"dYe" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/security/prison) -"dZj" = (/obj/machinery/atmospherics/pipe/manifold/green/visible,/obj/machinery/airalarm/engine{pixel_y = 22},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) -"eaw" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"ebD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters"; name = "law office shutters"},/turf/open/floor/plating,/area/lawoffice) -"edl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/science/explab) -"edJ" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"eex" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/office) -"eeQ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/office) -"efu" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/dark,/area/science/explab) -"efU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"egK" = (/obj/structure/girder,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"ehM" = (/obj/effect/decal/remains/human,/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"eiV" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"ekU" = (/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"elk" = (/obj/structure/chair/office/dark,/turf/open/floor/wood,/area/lawoffice) -"epj" = (/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"epJ" = (/obj/structure/sign/poster/contraband/random{pixel_y = 32},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"epV" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/engine/engineering) -"eqD" = (/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/department/crew_quarters/dorms) -"eta" = (/obj/machinery/door/airlock/engineering{name = "Engineering Supplies"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"euQ" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"eyj" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/engineering) -"ezF" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/red,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ezJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"eAp" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"eAH" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/engine,/area/engine/engineering) -"eAZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"eCw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"eCK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"eDC" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"eEp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/lawoffice) -"eFj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"eFG" = (/obj/machinery/mineral/stacking_unit_console{machinedir = 8; pixel_x = -32; pixel_y = 32},/obj/machinery/conveyor{dir = 4; id = "garbagestacked"},/turf/open/floor/plating,/area/maintenance/disposal) -"eHI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"eIL" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"eLt" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"eMC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"eNc" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/rack,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"eNq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/explab) -"eNF" = (/obj/structure/grille,/obj/structure/lattice,/turf/closed/wall,/area/space/nearstation) -"eOZ" = (/obj/structure/closet,/obj/item/clothing/suit/judgerobe,/obj/item/gavelblock,/obj/item/gavelhammer,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ePU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/security/brig) -"eQN" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"eQR" = (/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,/turf/open/floor/engine,/area/science/xenobiology) -"eQZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"eRp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"eSB" = (/obj/machinery/computer/cryopod{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/dark,/area/security/prison) -"eSL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/beacon,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"eVy" = (/obj/effect/turf_decal/arrows{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"eWi" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engineering) -"eXo" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/engine,/area/science/explab) -"eYr" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"eZA" = (/obj/item/stack/cable_coil/cut/random,/turf/open/floor/plating,/area/maintenance/department/cargo) -"fdQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"fdS" = (/obj/machinery/door/window/southleft{dir = 4; name = "Engineering Delivery"; req_access_txt = "10"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; freq = 1400; location = "Engineering"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"fef" = (/obj/machinery/door/airlock/maintenance{name = "Menagerie"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"ffJ" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"fgS" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/mob/living/simple_animal/opossum/poppy,/turf/open/floor/plasteel/dark,/area/maintenance/department/engine) -"fhM" = (/obj/item/storage/secure/safe{pixel_x = -22},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"fjs" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"fjD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/supermatter) -"fkH" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light,/obj/machinery/camera{c_tag = "Experimentation Lab Testing Zone"; dir = 1; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/explab) -"fmh" = (/turf/open/floor/wood,/area/maintenance/department/engine) -"fmL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"fmU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"fon" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) -"fow" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/customs) -"fpT" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"frj" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/engineering) -"ftp" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"ftW" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"fuP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/wood,/area/lawoffice) -"fvb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"fwe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"fwl" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"fwr" = (/obj/machinery/door/airlock/maintenance/abandoned,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/science) -"fwI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"fxC" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) -"fym" = (/obj/machinery/door/airlock/engineering/glass/critical{heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/engine,/area/engine/supermatter) -"fyF" = (/obj/structure/cable/yellow{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/window/plasma/reinforced{dir = 8},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) -"fyO" = (/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter) -"fzu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/gloves/color/black,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"fAx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"fBt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"fBz" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/science/mixing) -"fBZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/engine,/area/engine/supermatter) -"fFv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"fIu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/cryopod{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms) -"fIN" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"fIT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/main/monastery) -"fKj" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Mineral Room"},/turf/open/floor/plating,/area/maintenance/department/science) -"fLG" = (/obj/effect/decal/remains/xeno,/turf/open/floor/plating,/area/maintenance/department/engine) -"fNv" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) -"fQf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"fRr" = (/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"fRs" = (/turf/closed/wall,/area/crew_quarters/heads/hor) -"fTY" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"fUA" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"fWv" = (/obj/structure/bookcase/random/religion,/turf/open/floor/plasteel/dark,/area/library/lounge) -"fZK" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"gam" = (/obj/machinery/door/airlock/medical/glass{name = "Service Door"; req_one_access_txt = "35;28"},/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenwindowshutters"; name = "kitchen shutters"},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) -"gdJ" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"gdL" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"geU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"gfi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"ggg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"giI" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/chapel/office) -"giO" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gjp" = (/obj/structure/table/wood,/obj/structure/bedsheetbin,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"gjq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gjv" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Space Loop In"},/turf/open/floor/plating,/area/maintenance/department/science) -"gjN" = (/obj/item/weldingtool,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gkR" = (/obj/item/kirbyplants/random,/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"gkS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"gkX" = (/obj/machinery/door/airlock/maintenance{name = "Storage"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"glf" = (/obj/structure/closet/emcloset,/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"gmp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/science) -"gmO" = (/obj/structure/chair{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"gmZ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Atmospherics External Access"; req_access_txt = "24"},/turf/open/floor/plating,/area/maintenance/disposal/incinerator) -"gna" = (/turf/open/floor/plasteel/stairs/medium,/area/maintenance/department/crew_quarters/dorms) -"gnq" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel,/area/engine/engineering) -"gpC" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"gpI" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"gue" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gvf" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel{heat_capacity = 1e+006},/area/hallway/secondary/exit/departure_lounge) -"gwn" = (/obj/structure/sign/warning{pixel_y = 32},/obj/structure/sign/warning{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gxe" = (/obj/structure/sign/poster/contraband/random{pixel_x = -32},/obj/structure/light_construct/small{dir = 8},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"gxq" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"gxK" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) -"gAG" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/turf/open/floor/carpet,/area/lawoffice) -"gBb" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"gDR" = (/obj/machinery/camera{c_tag = "Central Primary Hallway Escape"; dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"gDZ" = (/obj/effect/turf_decal/box/corners{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"gEo" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"gFo" = (/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28; pixel_y = 3},/obj/machinery/button/door{id = "research_shutters_2"; name = "Shutters Control Button"; pixel_x = -28; pixel_y = -7; req_access_txt = "47"},/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/obj/item/wrench,/obj/item/crowbar,/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/dark,/area/science/lab) -"gGy" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gGA" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"gHZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/engine) -"gIC" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) -"gIG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"gKz" = (/obj/structure/table/wood,/obj/item/kirbyplants{icon_state = "plant-22"; pixel_y = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"gKG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"gLF" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"gMm" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/science/mixing) -"gMO" = (/obj/structure/plasticflaps/opaque,/turf/open/floor/plating,/area/maintenance/department/engine) -"gNv" = (/obj/structure/sign/poster/contraband/random{pixel_x = 32},/turf/open/floor/plasteel/stairs/right,/area/maintenance/department/crew_quarters/dorms) -"gNG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/door{id = "assistantshutters"; name = "Tool Storage Shutters Control"; pixel_y = 24; req_access_txt = "10"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"gPV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood,/area/lawoffice) -"gQf" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/engine/engineering) -"gQo" = (/obj/machinery/vending/wardrobe/det_wardrobe,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"gSH" = (/turf/closed/wall,/area/lawoffice) -"gSI" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"gUb" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plating,/area/maintenance/department/cargo) -"gVc" = (/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/engine) -"gXg" = (/obj/item/extinguisher,/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/department/science) -"gXZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 4; network = list("ss13","engine")},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"gYo" = (/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) -"haA" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/item/clothing/glasses/welding,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"hbl" = (/obj/machinery/door/poddoor/incinerator_atmos_main,/turf/open/floor/engine/vacuum,/area/space) -"heC" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Science Maintenance APC"; pixel_x = -25},/obj/structure/cable,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"hfZ" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science Requests Console"; pixel_x = 32; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"hgD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/department/science) -"hiw" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"hiY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci4"; location = "Sci3"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"hjk" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"hjD" = (/obj/structure/cable/yellow{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"hka" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/camera{c_tag = "Atmospherics Console"; dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"hkQ" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"hnu" = (/obj/machinery/button/door{id = "lawyer_shutters"; name = "law office shutters control"; pixel_x = 34; pixel_y = -1; req_access_txt = "38"},/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/wood,/area/lawoffice) -"hon" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Gas to Filter"},/turf/open/floor/engine,/area/engine/engineering) -"hoS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/engine,/area/engine/engineering) -"hqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "assistantshutters"; name = "Tool Storage Shutters Control"; pixel_y = 24; req_access_txt = "10"},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"hvW" = (/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/engine,/area/science/xenobiology) -"hwd" = (/obj/machinery/camera{c_tag = "Departure Lounge Port"; dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"hwj" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/security/execution/transfer) -"hxn" = (/obj/structure/chair,/obj/item/clothing/glasses/regular,/turf/open/floor/plating,/area/maintenance/department/science) -"hxI" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"hyh" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"hzc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/wrench,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/department/engine) -"hzd" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/port) -"hDG" = (/obj/machinery/door/airlock/engineering{name = "Auxillary Base Construction"; req_one_access_txt = "32;47;48"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"hEX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"hFp" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/chair,/obj/item/reagent_containers/blood/random,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"hFy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"hGB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"hHr" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"hIZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"hKp" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/window/plasma/reinforced{dir = 4},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) -"hMx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"hOx" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"hOz" = (/obj/item/weldingtool,/turf/open/floor/plating,/area/maintenance/department/cargo) -"hPN" = (/obj/structure/table/glass,/obj/item/clothing/glasses/science,/obj/machinery/button/door{id = "xenobiomain"; name = "Containment Blast Doors"; pixel_x = 28; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"hPU" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/surgical_drapes,/obj/item/clothing/mask/surgical,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"hQz" = (/obj/structure/closet/emcloset/anchored,/obj/structure/cable/yellow{icon_state = "1-2"},/turf/open/floor/plating,/area/tcommsat/computer) -"hQC" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"hSt" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Gas to Cooling Loop"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"hSC" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"hSM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "Starboard Solar Access"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"hTl" = (/obj/structure/sink{dir = 4; pixel_x = 12},/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/maintenance/department/science) -"hUt" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"hUw" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/engineering) -"hUJ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"hVx" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"hXt" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/science) -"hXK" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"hYe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"hZB" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"iab" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"ick" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/library) -"iej" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"igB" = (/obj/machinery/camera{c_tag = "Turbine Chamber"; network = list("turbine")},/turf/open/floor/engine,/area/maintenance/disposal/incinerator) -"igE" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio4"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/xenobiology) -"ihj" = (/obj/item/clothing/suit/toggle/labcoat/science,/turf/open/floor/plating,/area/maintenance/department/engine) -"ihk" = (/obj/structure/chair/office/light,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"ijF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library) -"ijU" = (/obj/effect/spawner/lootdrop/organ_spawner,/obj/structure/closet/crate,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"ikB" = (/obj/structure/closet/secure_closet/medical2,/turf/open/floor/plating,/area/maintenance/department/science) -"ikO" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"ilD" = (/obj/machinery/processor/slime,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"ilE" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"imE" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"ioj" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/light{light_color = "#e8eaff"},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -28},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"iop" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"ioF" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"iqc" = (/turf/open/floor/plasteel/stairs/right,/area/maintenance/department/crew_quarters/dorms) -"irM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"itl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/departments/xenobio{pixel_y = 32},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"iuM" = (/obj/machinery/door/window/southleft{dir = 8; name = "Test Chamber"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ivO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/simple_animal/bot/secbot{arrest_type = 1; health = 45; icon_state = "secbot1"; idcheck = 1; name = "Sergeant-at-Armsky"; weaponscheck = 1},/turf/open/floor/plasteel/dark,/area/security/armory) -"iwe" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"iyg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/electricshock{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/department/engine) -"iyJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"izB" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/crew_quarters/dorms) -"izF" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"iAx" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering) -"iBJ" = (/obj/machinery/camera{c_tag = "Telecomms External Fore"; dir = 1; network = list("tcomms"); start_active = 1},/obj/structure/cable/yellow{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) -"iCe" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/turf/open/floor/plating,/area/maintenance/department/cargo) -"iCs" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"iCV" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/security/execution/transfer) -"iEQ" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/department/engine) -"iEU" = (/obj/effect/spawner/lootdrop/keg,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"iFI" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/engine/engineering) -"iGJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/zone3) -"iJi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"iKb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting) -"iLh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) -"iLl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"iLR" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/window/reinforced,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"iPj" = (/obj/machinery/igniter{id = "xenoigniter"; luminosity = 2},/turf/open/floor/engine,/area/science/xenobiology) -"iPz" = (/obj/structure/extinguisher_cabinet{pixel_x = -24},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology Test Lab"; dir = 4; network = list("xeno","rd")},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"iPH" = (/obj/machinery/vr_sleeper{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"iPO" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"iPU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/execution/transfer) -"iSz" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"iTF" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/engine/supermatter) -"iVJ" = (/obj/effect/spawner/lootdrop/organ_spawner,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"iWV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/cargo) -"iXx" = (/obj/machinery/light/small,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"jcT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"jen" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"jeq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"jgr" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library) -"jhk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"jhD" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"jjC" = (/obj/structure/rack,/obj/item/storage/briefcase{pixel_x = -3; pixel_y = 2},/obj/item/storage/secure/briefcase{pixel_x = 2; pixel_y = -2},/turf/open/floor/wood,/area/lawoffice) -"jrG" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/requests_console{department = "Engineering"; departmentType = 4; name = "Engineering RC"; pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/machinery/shower{dir = 4; name = "emergency shower"},/turf/open/floor/plasteel,/area/engine/engineering) -"jsf" = (/obj/item/toy/katana,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"jsj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/sleeper) -"jsD" = (/obj/structure/sign/plaques/deempisi{pixel_y = 28},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/chapel/office) -"jtf" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"juw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/armory) -"jvi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hos) -"jwe" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"jxl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"jxK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"jzz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/entry) -"jzE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"jAy" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"jBh" = (/obj/structure/rack,/obj/item/stack/sheet/glass/fifty{pixel_x = 3; pixel_y = 3},/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plating,/area/maintenance/department/cargo) -"jBn" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"jCv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"jDA" = (/obj/item/chair,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"jEX" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/science) -"jFw" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) -"jFO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet,/area/library/lounge) -"jHP" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{pixel_x = 6; pixel_y = 10},/obj/item/reagent_containers/food/drinks/bottle/tequila{pixel_x = -6; pixel_y = 4},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"jOB" = (/turf/open/floor/plating,/area/storage/emergency/starboard) -"jPf" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/item/kitchen/knife,/turf/open/floor/plasteel,/area/maintenance/department/engine) -"jQh" = (/obj/item/stack/sheet/animalhide/xeno,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) -"jRG" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) -"jSa" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/chapel/main/monastery) -"jTh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"jTu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/carpet,/area/lawoffice) -"jTU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable/yellow{icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"jUV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"jXh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/dark,/area/library/lounge) -"jXA" = (/obj/structure/table,/obj/item/stack/ore/iron,/turf/open/floor/plating,/area/maintenance/department/science) -"jXF" = (/obj/machinery/cryopod{dir = 1},/turf/open/floor/plasteel/dark,/area/security/prison) -"jXV" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"jYe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"jYh" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Supply to Virology"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/engine) -"jZG" = (/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/chemistry) -"kas" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/engine/atmos) -"kaR" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"kfh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/closed/wall/r_wall,/area/science/mixing) -"kfM" = (/obj/structure/closet,/obj/machinery/light/small,/obj/item/storage/book/bible,/obj/item/storage/book/bible,/obj/item/storage/book/bible,/turf/open/floor/carpet,/area/chapel/office) -"kgR" = (/obj/structure/toilet/secret/low_loot{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"khk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"kjK" = (/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance"; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/ai_monitored/turret_protected/AIsatextAP) -"kkk" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/crew_quarters/dorms) -"kkQ" = (/obj/machinery/vending/cola/pwr_game,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"klb" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/sorting) -"klo" = (/obj/structure/dresser,/obj/structure/mirror{pixel_y = 30},/turf/open/floor/plating,/area/maintenance/department/engine) -"klB" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"klV" = (/obj/item/clothing/under/rank/civilian/clown/sexy,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"kmd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"kmn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) -"koz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"kpK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) -"krU" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/engine) -"ksf" = (/obj/item/stack/tile/carpet,/obj/structure/sign/warning{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/department/engine) -"kvj" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"kwm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"kxj" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/carpet,/area/lawoffice) -"kxs" = (/obj/item/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"kyv" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"kAa" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"kDf" = (/obj/machinery/light/small,/turf/open/floor/carpet/black,/area/chapel/office) -"kDJ" = (/obj/machinery/light{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel,/area/engine/engineering) -"kDY" = (/obj/item/shard{icon_state = "small"},/turf/open/floor/wood,/area/maintenance/department/engine) -"kEM" = (/obj/structure/sign/directions/evac{dir = 1; pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"kEW" = (/obj/machinery/smartfridge/disks{pixel_y = 2},/obj/structure/table,/turf/open/floor/plasteel,/area/hydroponics) -"kFm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/tcommsat/computer) -"kFu" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"kFx" = (/obj/machinery/door/airlock/maintenance{name = "Law Office Maintenance"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"kFD" = (/obj/structure/closet/l3closet,/obj/machinery/light{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -27},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"kGe" = (/obj/structure/transit_tube/horizontal,/obj/structure/sign/departments/holy{pixel_x = -32},/turf/open/floor/plating,/area/hallway/secondary/entry) -"kIo" = (/obj/structure/table,/obj/item/paper_bin{layer = 2.9},/turf/open/floor/plating,/area/maintenance/department/cargo) -"kIO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"kJo" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"kJw" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Firing Range Target"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"kKI" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/department/cargo) -"kNf" = (/obj/machinery/door/window/northleft{base_state = "right"; icon_state = "right"; name = "Containment Pen #4"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"kPi" = (/obj/structure/table,/obj/machinery/microwave,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"kQy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"kQZ" = (/obj/structure/closet,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c10,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"kRq" = (/turf/open/floor/plasteel,/area/maintenance/department/engine) -"kRK" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/bz,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"kSb" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space) -"kSF" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"kSO" = (/obj/machinery/door/airlock/maintenance{name = "Port Emergency Storage"},/turf/open/floor/plating,/area/storage/emergency/port) -"kTj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"kTR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"kWQ" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"kXx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/plasteel/dark,/area/chapel/main/monastery) -"kYM" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"lcU" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lcZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/gateway) -"ldQ" = (/obj/structure/floodlight_frame,/turf/open/floor/plating,/area/maintenance/department/science) -"lem" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/flasher{id = "executionflash"; pixel_y = 25},/obj/machinery/igniter{id = "secigniter"},/turf/open/floor/plating,/area/security/execution/transfer) -"lfx" = (/obj/structure/table,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"lhA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"liR" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"lje" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"lms" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/maintenance/department/engine) -"lnn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"lnr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/engine/engineering) -"loz" = (/obj/structure/closet/radiation,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"loL" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4; filter_type = "n2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"lqc" = (/obj/item/toy/gun,/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lqy" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library/lounge) -"lrM" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"lxI" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/chapel/monastery) -"lzJ" = (/obj/structure/closet/crate/bin,/turf/open/floor/carpet,/area/chapel/office) -"lAf" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel/dark,/area/chapel/office) -"lAs" = (/turf/closed/wall,/area/quartermaster/sorting) -"lAR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"lBP" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"lEn" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/lattice,/obj/structure/window/reinforced,/turf/open/space/basic,/area/space/nearstation) -"lFh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"lGp" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel/dark,/area/security/prison) -"lGv" = (/obj/machinery/door/airlock/atmos/abandoned{name = "Atmospherics Maintenance"; req_access_txt = "12;24"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"lGS" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"lHc" = (/obj/structure/girder,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lHX" = (/obj/structure/bed,/obj/item/bedsheet/orange,/turf/open/floor/plating,/area/maintenance/department/engine) -"lIr" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/engine) -"lJr" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/science) -"lJI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"lKL" = (/obj/machinery/door/airlock/abandoned{name = "Starboard Emergency Storage"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/storage/emergency/starboard) -"lMU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lNW" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/science) -"lQn" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"lQQ" = (/obj/machinery/door/poddoor/preopen{id = "bridgespace"; name = "bridge external shutters"},/obj/effect/turf_decal/delivery,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"lQX" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"lTC" = (/obj/item/shard,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/department/engine) -"lUO" = (/obj/structure/sign/warning/radiation,/turf/closed/wall/r_wall,/area/engine/supermatter) -"lWy" = (/turf/open/floor/plating,/area/maintenance/department/science) -"lWH" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/rack,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/suit/hooded/wintercoat,/turf/open/floor/plasteel,/area/science/xenobiology) -"lWJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering) -"lXb" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Gas to Mix"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"lXc" = (/obj/structure/table,/obj/item/clothing/head/beret,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"lXJ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"mal" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"mau" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) -"maW" = (/obj/structure/table/glass,/obj/item/weldingtool/mini,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"mbe" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/vending/wardrobe/engi_wardrobe,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"mci" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/engine/engineering) -"mdL" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen{layer = 3.1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"meF" = (/obj/machinery/status_display/evac,/turf/closed/wall/r_wall,/area/engine/supermatter) -"mfC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"mgz" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"mhl" = (/obj/machinery/power/emitter,/obj/machinery/light{dir = 8},/turf/open/floor/plating,/area/engine/engineering) -"mhn" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/random{pixel_x = 32},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"mhK" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/open/space/basic,/area/space/nearstation) -"miw" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Engineering Supermatter Fore"; dir = 1; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/engine/engineering) -"mjn" = (/obj/machinery/jukebox,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"mjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/engineering) -"mlr" = (/obj/structure/lattice,/obj/structure/disposalpipe/junction{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"mmv" = (/obj/machinery/door/airlock/engineering{name = "Engineering Supplies"; req_access_txt = "10"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"mnG" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"mpd" = (/obj/structure/cable/yellow{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/window/plasma/reinforced{dir = 4},/obj/machinery/power/rad_collector/anchored,/turf/open/floor/engine,/area/engine/supermatter) -"mpy" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/blue,/turf/open/floor/wood,/area/lawoffice) -"mql" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"mqp" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"msX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/execution/transfer) -"mtu" = (/obj/structure/table,/obj/item/folder/yellow,/obj/item/reagent_containers/food/snacks/donut,/obj/machinery/light/small{dir = 4},/turf/closed/wall,/area/maintenance/department/security/brig) -"mtI" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Xenobiology APC"; pixel_x = -25},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"mvm" = (/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "Starboard Solar APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"mwg" = (/obj/structure/closet/crate{icon_state = "crateopen"},/obj/item/ammo_box/foambox,/obj/item/ammo_box/foambox,/obj/item/gun/ballistic/shotgun/toy,/obj/item/gun/ballistic/shotgun/toy,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"mwG" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"mxy" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/tcommsat/computer) -"myu" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/command/glass{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/structure/sign/directions/evac{dir = 1; pixel_x = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"mzl" = (/obj/structure/chair,/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating,/area/security/execution/transfer) -"mzE" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) -"mzU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/department/engine) -"mCe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "Engineering"; name = "engineering security door"},/turf/open/floor/plating,/area/security/checkpoint/engineering) -"mDW" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable,/turf/open/floor/plating,/area/tcommsat/computer) -"mEu" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"mES" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Surgical Room"},/turf/open/floor/plating,/area/maintenance/department/science) -"mHy" = (/obj/item/storage/fancy/cigarettes/cigpack_shadyjims,/turf/open/floor/wood,/area/maintenance/department/engine) -"mIa" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"mJp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/space/basic,/area/space/nearstation) -"mKc" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/plasteel/dark,/area/library/lounge) -"mKk" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating/airless,/area/space/nearstation) -"mLB" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/security/brig) -"mMz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"mQm" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"mSc" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/department/science) -"mTS" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"mVM" = (/turf/open/floor/plating/airless,/area/space/nearstation) -"mXq" = (/obj/item/taperecorder,/obj/item/cartridge/lawyer,/obj/structure/table/wood,/turf/open/floor/wood,/area/lawoffice) -"mZE" = (/turf/open/space/basic,/area/space/nearstation) -"naq" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) -"naS" = (/obj/effect/landmark/start/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"nbu" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/space) -"ncm" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"ndI" = (/obj/item/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"nev" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/science) -"new" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"nfi" = (/obj/structure/sign/directions/evac{dir = 1; pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"nfz" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"nge" = (/obj/structure/grille/broken,/obj/structure/lattice,/turf/open/space,/area/space/nearstation) -"ngp" = (/obj/item/chair/stool,/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"nih" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/costume,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"niy" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/cookie,/obj/machinery/airalarm{pixel_y = 22},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"nku" = (/obj/machinery/door/airlock/centcom{name = "Crematorium"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"nnh" = (/obj/structure/chair{dir = 8},/obj/item/stack/spacecash/c10,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"noC" = (/obj/machinery/vending/kink,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"noM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) -"npE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"nqu" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"nqV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"nsy" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods/fifty,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/power/apc{areastring = "/area/construction/mining/aux_base"; dir = 8; name = "Auxillary Base Construction APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"nsD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall/r_wall,/area/science/mixing) -"nsJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"ntj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"nuv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"nxT" = (/obj/machinery/smartfridge/extract/preloaded,/turf/open/floor/plasteel,/area/science/xenobiology) -"nyB" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/primary/central) -"nyO" = (/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"nzD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/science) -"nAs" = (/obj/machinery/door/airlock/engineering/glass{name = "Supermatter Engine"; req_access_txt = "10"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"nAY" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"nBw" = (/obj/machinery/computer/crew{dir = 1},/turf/open/floor/carpet,/area/security/detectives_office) -"nBL" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"nDo" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/department/engine) -"nDx" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"nEb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"nGi" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"nIm" = (/obj/machinery/computer/security/telescreen{dir = 8; name = "Test Chamber Monitor"; network = list("xeno"); pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel,/area/science/xenobiology) -"nIU" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"nJI" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/sign/plaques/kiddie/perfect_drone{pixel_y = 32},/turf/open/floor/engine,/area/science/explab) -"nKo" = (/obj/structure/lattice,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"nLl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) -"nMG" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 26},/obj/machinery/camera/motion{c_tag = "Telecomms Monitoring"; network = list("tcomms")},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"nNJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"nNN" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/space/nearstation) -"nOY" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"nPA" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"nQc" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"nRM" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/engineering) -"nSj" = (/obj/structure/grille/broken,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"nSo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/lawoffice) -"nTr" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"nUQ" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) -"nVU" = (/obj/item/spear,/turf/open/floor/plating,/area/maintenance/department/engine) -"nWP" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/department/engine) -"nYb" = (/obj/structure/table_frame/wood,/turf/open/floor/wood,/area/maintenance/department/engine) -"nYn" = (/obj/structure/sign/warning/docking,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"nZw" = (/obj/machinery/door/airlock/abandoned{name = "Backup Laboratory"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"obj" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"obP" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plating,/area/maintenance/department/science) -"odM" = (/obj/effect/landmark/barthpot,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) -"oep" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ofN" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ofX" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ohR" = (/obj/item/chair,/turf/open/floor/plating,/area/maintenance/department/engine) -"olc" = (/obj/machinery/door/airlock/maintenance{name = "Bedroom"; req_access_txt = "12"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/engine) -"onX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Primary Tool Storage"},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "assistantshutters"; name = "storage shutters"},/turf/open/floor/plasteel,/area/storage/primary) -"ooh" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/wrench/medical,/turf/open/floor/engine,/area/medical/chemistry) -"opz" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/engineering/glass{name = "Server Room"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/tcommsat/computer) -"ore" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/engine/engineering) -"ost" = (/obj/structure/table/glass,/obj/item/paper_bin{layer = 2.9},/obj/effect/turf_decal/stripes/corner,/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/science/xenobiology) -"ous" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/button/door{desc = "A remote control-switch for secure storage."; id = "Secure Storage"; name = "Engineering Secure Storage"; pixel_y = -24; req_access_txt = "11"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel,/area/engine/engineering) -"ouv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"ovB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"ovM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals Port Fore"},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) -"owS" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"oxw" = (/obj/structure/cable/yellow{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/engineering) -"oyF" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/primary) -"ozO" = (/obj/machinery/door/airlock/maintenance,/turf/open/floor/plating,/area/maintenance/department/engine) -"oAw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel,/area/engine/engineering) -"oAW" = (/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) -"oBb" = (/obj/structure/sign/warning/biohazard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/xenobiology) -"oCn" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/lawyer,/turf/open/floor/carpet,/area/lawoffice) -"oCX" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"oDP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"oEA" = (/turf/closed/wall,/area/construction/mining/aux_base) -"oEG" = (/obj/structure/mirror{icon_state = "mirror_broke"; pixel_y = 28},/obj/item/shard{icon_state = "medium"},/obj/item/circuitboard/computer/operating,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"oEW" = (/obj/machinery/button/door{id = "misclab"; name = "Test Chamber Blast Doors"; pixel_y = -2; req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/button/ignition{id = "xenoigniter"; pixel_y = 7},/turf/open/floor/plasteel,/area/science/xenobiology) -"oFf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"oFo" = (/obj/structure/closet/emcloset/anchored,/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/storage/emergency/starboard) -"oFI" = (/obj/structure/closet,/obj/effect/decal/cleanable/blood/old,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plasteel,/area/maintenance/department/engine) -"oGw" = (/obj/item/clothing/mask/gas,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal/incinerator) -"oHa" = (/obj/machinery/power/emitter/anchored{dir = 8; state = 2},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engineering) -"oKa" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"oKv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/engine/engineering) -"oKJ" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/engine/engineering) -"oLR" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit/departure_lounge) -"oMN" = (/turf/open/floor/plasteel/stairs/left,/area/maintenance/department/crew_quarters/dorms) -"oNE" = (/obj/structure/chair/office/light,/obj/structure/sign/warning/deathsposal{pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"oPx" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"oPy" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock"; req_access_txt = "48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningdock) -"oQm" = (/obj/docking_port/stationary{dir = 8; dwidth = 3; height = 5; id = "commonmining_home"; name = "SS13: Common Mining Dock"; roundstart_template = /datum/map_template/shuttle/mining_common/meta; width = 7},/turf/open/space/basic,/area/space) -"oRX" = (/obj/structure/closet,/turf/open/floor/plating,/area/maintenance/department/cargo) -"oSc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"oSL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"oTl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"oTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"oTC" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/cola,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"oUa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"oWu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/engineering) -"oWw" = (/obj/item/flashlight,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"oXe" = (/obj/structure/table/glass,/obj/item/mmi,/obj/item/clothing/mask/balaclava,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/security/execution/transfer) -"oXq" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Cooling Loop Bypass"},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"oYj" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"oZW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) -"paU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plating/airless,/area/engine/engineering) -"pbm" = (/obj/machinery/door/airlock/external{name = "Pod Docking Bay"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plating,/area/chapel/dock) -"pbI" = (/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel/white,/area/science/explab) -"pbR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) -"pdq" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"pdW" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/science/explab) -"peE" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/security/prison) -"pfz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/execution/transfer) -"pfB" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/armory) -"pfP" = (/obj/structure/table,/obj/item/storage/box/syringes,/obj/machinery/camera{c_tag = "Xenobiology Computers"; dir = 4; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/xenobiology) -"pgH" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"phJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"phS" = (/obj/machinery/conveyor{dir = 8; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"pia" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/rack,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"pjH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space/nearstation) -"pkM" = (/obj/machinery/door/airlock/external{req_access_txt = "22"},/turf/open/floor/plating,/area/chapel/office) -"plA" = (/obj/structure/musician/piano,/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"pmB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "N2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) -"pnU" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 4; external_pressure_bound = 120; name = "server vent"},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"poP" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"pps" = (/turf/closed/wall,/area/engine/break_room) -"ppQ" = (/obj/structure/sign/poster/official/random{pixel_y = -32},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"pqP" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/entry) -"prQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/engine/supermatter) -"psd" = (/obj/machinery/atmospherics/components/binary/pump{name = "Gas to Filter"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/engine,/area/engine/supermatter) -"puw" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/supermatter) -"pvK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"pwj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"pwS" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space/basic,/area/space/nearstation) -"pxD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters"; name = "chemistry shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/chemistry) -"pzF" = (/mob/living/simple_animal/opossum,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"pBD" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/sign/warning{pixel_y = -32},/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/maintenance/department/engine) -"pBJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"pCo" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/engineering) -"pDP" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"pEH" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/chair/comfy{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"pEL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/wood,/area/lawoffice) -"pFe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"pFy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"pGe" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"pHo" = (/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads/hop) -"pKd" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/department/cargo) -"pMG" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"pNy" = (/obj/structure/closet/firecloset,/obj/machinery/camera{c_tag = "Toxins Launch Area"; network = list("ss13","rd")},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"pOr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"pQw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology) -"pVD" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/department/engine) -"pWm" = (/obj/machinery/door/window/southleft{dir = 4; name = "Test Chamber"; req_access_txt = "55"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"pWF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/science) -"pWT" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"pXc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet,/area/library) -"pXg" = (/obj/structure/table/glass,/obj/structure/window/reinforced,/obj/item/extinguisher{pixel_x = 4; pixel_y = 3},/obj/item/extinguisher,/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"pXT" = (/obj/item/kirbyplants,/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 8; name = "Law Office APC"; pixel_x = -24},/obj/structure/cable,/turf/open/floor/wood,/area/lawoffice) -"pYh" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/closed/wall/r_wall,/area/engine/engineering) -"pYw" = (/obj/item/kirbyplants{icon_state = "plant-03"},/obj/structure/extinguisher_cabinet{pixel_x = -24},/turf/open/floor/plasteel/dark,/area/science/lab) -"pYC" = (/obj/structure/sign/warning{pixel_y = -32},/obj/structure/barricade/wooden,/turf/open/floor/plasteel,/area/maintenance/department/engine) -"qar" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"qbp" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"qbZ" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/storage/emergency/starboard) -"qcD" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"qcH" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"qdi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Containment Pen Access"; req_access_txt = "55"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) -"qdj" = (/obj/structure/disposalpipe/segment,/obj/item/stack/sheet/mineral/wood,/turf/open/floor/plating,/area/maintenance/department/engine) -"qeY" = (/turf/closed/wall/r_wall,/area/engine/supermatter) -"qhE" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"qjx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"qkM" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/engine/engineering) -"qni" = (/obj/machinery/smartfridge/organ/preloaded,/turf/closed/wall,/area/medical/surgery) -"qnT" = (/obj/machinery/iv_drip,/turf/open/floor/plating,/area/maintenance/department/science) -"qpd" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 8},/obj/structure/cable/yellow{icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"qpS" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"qtA" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"qtF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"qtO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"qxq" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Air Out"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/tcommsat/computer) -"qyF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/engine) -"qAM" = (/obj/effect/spawner/lootdrop/maintenance,/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/department/cargo) -"qBv" = (/obj/item/clothing/head/ushanka,/turf/open/floor/plating,/area/maintenance/department/engine) -"qDJ" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/debugger,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"qEN" = (/obj/machinery/rnd/production/techfab/department/service,/obj/structure/window/reinforced{dir = 8},/turf/closed/wall,/area/crew_quarters/bar) -"qFu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"qGu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"qGZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "ce_privacy"; name = "Privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"qHI" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"qIC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Cargo Escape Airlock"},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"qIO" = (/obj/structure/table,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/storage/bag/ore,/obj/item/pickaxe,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/department/science) -"qLI" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty{layer = 4},/obj/item/stack/cable_coil,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering) -"qMi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/door/poddoor/preopen{id = "executionfireblast"},/turf/open/floor/plating,/area/security/execution/transfer) -"qOE" = (/turf/open/floor/plasteel/dark,/area/library/lounge) -"qOH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) -"qPB" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"qRl" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 29},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"qRm" = (/obj/machinery/door/airlock/external{name = "Port Docking Bay 2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/entry) -"qTV" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"qUw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"qVk" = (/obj/machinery/door/poddoor/incinerator_atmos_aux,/turf/open/space/basic,/area/maintenance/disposal/incinerator) -"qVP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "xenobiomain"; name = "containment blast door"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"qWo" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/chapel/monastery) -"qWG" = (/obj/structure/closet/emcloset/anchored,/turf/open/floor/plating,/area/engine/engineering) -"qWM" = (/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -2},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"qXq" = (/obj/machinery/door/airlock/maintenance/abandoned,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"qXH" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"qYi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/engine) -"qYq" = (/obj/structure/cable{icon_state = "2-4"},/obj/item/wrench,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"qYS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"rar" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"rdB" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"reH" = (/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/wood,/area/maintenance/department/engine) -"reV" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/turf/open/floor/plating,/area/maintenance/department/engine) -"rgn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/science) -"rgs" = (/obj/structure/table,/obj/item/instrument/eguitar,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"rhr" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/department/engine) -"riF" = (/obj/machinery/computer/arcade,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"riW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"rjF" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate"; name = "brig shutters"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) -"rmC" = (/turf/open/space/basic,/area/space/station_ruins) -"rnr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating/airless,/area/space/nearstation) -"rnE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"roc" = (/obj/structure/cable,/turf/open/floor/plating/airless,/area/space/nearstation) -"ros" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/white{heat_capacity = 1e+006},/area/chapel/dock) -"rrb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"rrU" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"rse" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/engine) -"rsZ" = (/obj/machinery/camera/motion{c_tag = "Telecomms External Access"; dir = 1; network = list("tcomms")},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"rui" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small{dir = 8; light_color = "#d8b1b1"},/turf/open/floor/plating,/area/maintenance/department/science) -"rvH" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; dir = 4; freq = 1400; location = "Medbay"},/obj/machinery/door/window/southleft{dir = 4; name = "Medbay Delivery"; req_access_txt = "28"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"rxa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"rxQ" = (/obj/machinery/door/airlock/abandoned{id_tag = "PottySci"; name = "Science Bathroom"},/turf/open/floor/plating,/area/maintenance/department/science) -"rxV" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"rzp" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/rods/fifty,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"rzF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/chapel/asteroid/monastery) -"rBh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) -"rEh" = (/obj/structure/table/glass,/obj/item/restraints/handcuffs/cable/zipties,/obj/item/reagent_containers/blood/random,/turf/open/floor/plating,/area/maintenance/department/science) -"rFq" = (/obj/structure/chair,/obj/item/reagent_containers/food/snacks/donkpocket,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"rHA" = (/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"rJg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/engine) -"rJZ" = (/obj/docking_port/stationary{area_type = /area/construction/mining/aux_base; dheight = 4; dwidth = 4; height = 9; id = "aux_base_zone"; name = "aux base zone"; roundstart_template = /datum/map_template/shuttle/aux_base/small; width = 9},/turf/open/floor/plating,/area/construction/mining/aux_base) -"rKr" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/port) -"rKL" = (/obj/item/trash/cheesie,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"rLi" = (/obj/machinery/button/door{id = "shootshut"; name = "shutters control"; pixel_x = 28},/obj/item/ammo_casing/shotgun/improvised,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"rMV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating/airless,/area/maintenance/department/engine) -"rNi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/pipedispenser/disposal/transit_tube,/turf/open/floor/plasteel,/area/engine/atmos) -"rNB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/science) -"rPg" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"rPW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/science/mixing) -"rSH" = (/obj/item/trash/can,/turf/open/floor/wood,/area/maintenance/department/engine) -"rTd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering) -"rWE" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard) -"rXT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/engine) -"rYC" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "public external airlock"},/turf/open/floor/plating,/area/storage/emergency/starboard) -"sbk" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/crew_quarters/dorms) -"sbY" = (/obj/machinery/vending/coffee,/turf/open/floor/wood,/area/lawoffice) -"sci" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/department/science) -"scp" = (/obj/machinery/door/airlock/maintenance{name = "Auxillary Base Maintenance"; req_access_txt = "12"; req_one_access_txt = "32;47;48"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/mining/aux_base) -"scz" = (/obj/machinery/power/apc/highcap/fifteen_k{dir = 8; name = "Engineering APC"; pixel_x = -28},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel,/area/engine/engineering) -"sdk" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Armory External"; dir = 1},/turf/open/space,/area/space/nearstation) -"sgc" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"shH" = (/turf/closed/wall/r_wall,/area/space/nearstation) -"sij" = (/obj/structure/closet,/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) -"sjC" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/power/port_gen/pacman,/turf/open/floor/plasteel,/area/engine/engineering) -"skw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/maintenance/department/security/brig) -"slJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"smv" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Cooling Loop to Gas"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"spz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/department/science) -"sqh" = (/obj/structure/chair{dir = 8},/obj/structure/sign/poster/contraband/random{pixel_x = 32},/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"sqQ" = (/turf/open/floor/plating,/area/maintenance/disposal) -"srZ" = (/obj/structure/closet/crate{icon_state = "crateopen"},/turf/open/floor/plating,/area/maintenance/disposal) -"ssx" = (/obj/item/shard,/turf/open/floor/plating,/area/maintenance/department/engine) -"stQ" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/sign/departments/science{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/engine) -"sut" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"svA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/engineering) -"svN" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/departments/restroom{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/department/science) -"swg" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"sww" = (/obj/effect/decal/cleanable/blood/old,/obj/item/reagent_containers/food/snacks/meat/slab/monkey,/turf/open/floor/plating,/area/maintenance/department/engine) -"syn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/security/brig) -"syQ" = (/obj/machinery/vending/games,/obj/structure/sign/plaques/deempisi{pixel_y = 28},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"szG" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer) -"sAK" = (/obj/item/clothing/mask/gas/plaguedoctor,/turf/open/floor/plating,/area/maintenance/department/science) -"sBA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"sEB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/science) -"sEN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"sGr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"sIK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/flashlight,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"sJp" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/security/execution/transfer) -"sJr" = (/turf/open/floor/wood,/area/lawoffice) -"sKa" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"sNz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"sOC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/security/execution/transfer) -"sQt" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage) -"sUP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/meter,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"sWj" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"sWW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8"},/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/engine/engineering) -"sXi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/warning/deathsposal{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/department/engine) -"sXR" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/science/xenobiology) -"sYQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"sZh" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/disposal) -"sZu" = (/obj/item/storage/backpack/satchel/explorer,/turf/open/floor/plating,/area/maintenance/department/science) -"tan" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/centcom{name = "Chapel Office"; req_access_txt = "22"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"tap" = (/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"taA" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"taT" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 4; name = "euthanization chamber freezer"},/turf/open/floor/plasteel,/area/science/xenobiology) -"tcY" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"tdp" = (/obj/structure/rack,/obj/item/stack/packageWrap,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/hand_labeler,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/explab) -"tdB" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker,/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"tdL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/supermatter) -"tfw" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating/airless,/area/space/nearstation) -"tfx" = (/obj/machinery/atmospherics/components/binary/valve{dir = 1},/turf/open/floor/plating,/area/maintenance/department/science) -"tfP" = (/obj/item/beacon,/turf/open/floor/engine,/area/science/xenobiology) -"tfZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/department/security/brig) -"thA" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"thW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"tim" = (/obj/machinery/door/airlock/maintenance{name = "Testing Lab Maintenance"; req_access_txt = "47"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/science/explab) -"tix" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/sleeper) -"tkL" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"tlc" = (/obj/machinery/recharger,/obj/structure/table,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"tlp" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"tlw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"tlN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"tlV" = (/obj/structure/reflector/single/anchored{dir = 6},/turf/open/floor/plating,/area/engine/engineering) -"tnP" = (/obj/machinery/seed_extractor,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison) -"tnY" = (/obj/machinery/button/door{id = "aux_base_shutters"; name = "Public Shutters Control"; pixel_x = -26; req_one_access_txt = "32;47;48"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"tpb" = (/obj/item/reagent_containers/food/snacks/donut,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"tqO" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"tqX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"ttS" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/mob/living/simple_animal/pet/bumbles,/turf/open/floor/plasteel,/area/hydroponics) -"tue" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating/airless,/area/space/nearstation) -"tuy" = (/obj/machinery/camera{c_tag = "Xenobiology Test Chamber"; dir = 8; network = list("xeno","rd")},/obj/machinery/light{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) -"tvj" = (/obj/structure/festivus{anchored = 1; desc = "A pole for dancing."; name = "pole"},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"tvP" = (/obj/item/storage/toolbox/mechanical,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"twv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"typ" = (/obj/structure/table/glass,/obj/item/hemostat,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"tyL" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"tzH" = (/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/lab) -"tAK" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/science/explab) -"tCP" = (/obj/docking_port/stationary/public_mining_dock,/turf/open/floor/plating,/area/construction/mining/aux_base) -"tDn" = (/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/cargo) -"tHk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/directions/evac{pixel_x = 32; pixel_y = 3},/turf/open/floor/plasteel,/area/hallway/primary/central) -"tIS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/engineering) -"tJr" = (/obj/structure/plasticflaps/opaque,/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2"; name = "research shutters"},/turf/open/floor/plasteel,/area/science/lab) -"tLP" = (/obj/machinery/status_display/supply,/turf/closed/wall,/area/quartermaster/warehouse) -"tOD" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"tRc" = (/obj/structure/ore_box,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/engine) -"tSL" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"tTl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"tTZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"tXn" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"uaC" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet,/area/maintenance/department/crew_quarters/dorms) -"uaE" = (/obj/effect/decal/cleanable/oil{icon_state = "floor6"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"uaO" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"uaP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"ubW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/science/mixing) -"udl" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space,/area/space/nearstation) -"uek" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/science) -"ueP" = (/obj/structure/table/glass,/obj/item/folder/blue,/obj/item/pen,/obj/machinery/button/door{id = "xenobiomain"; name = "Containment Blast Doors"; pixel_x = 28; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"ueV" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"ueX" = (/obj/structure/table/glass,/obj/item/book/manual/wiki/engineering_hacking{pixel_x = 3; pixel_y = 3},/obj/item/book/manual/wiki/engineering_construction,/turf/open/floor/plasteel,/area/engine/engineering) -"ufa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ugC" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"uiP" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/wood,/area/maintenance/department/engine) -"ujI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ukn" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/department/engine) -"ukp" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Gas"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"ulu" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"ulY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/engineering) -"ume" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "55"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"uoj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/science) -"uos" = (/obj/machinery/computer/camera_advanced/base_construction,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"uoS" = (/turf/open/floor/plating,/area/construction/mining/aux_base) -"upc" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"uqJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/execution/transfer) -"urP" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/light,/turf/open/floor/plasteel,/area/science/explab) -"utg" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/security/prison) -"uug" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/science) -"uun" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering) -"uuS" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/carpet,/area/lawoffice) -"uvo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "misclab"; name = "test chamber blast door"},/turf/open/floor/plating,/area/science/xenobiology) -"uvq" = (/obj/structure/table,/obj/item/dice/d20,/turf/open/floor/plating,/area/maintenance/department/science) -"uwb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"uwX" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/maintenance/department/engine) -"uxP" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/chair{dir = 8; name = "Defense"},/obj/machinery/camera{c_tag = "Atmospherics Starboard"; dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"uzh" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/engineering/glass/critical{heat_proof = 1; name = "Supermatter Chamber"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/engine,/area/engine/supermatter) -"uzn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"uAU" = (/obj/structure/table/wood,/obj/item/folder/blue,/obj/item/folder/blue,/obj/item/clothing/glasses/sunglasses,/turf/open/floor/carpet,/area/lawoffice) -"uAZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/camera{c_tag = "Experimentation Lab Mixing Area"; network = list("ss13","rd")},/turf/open/floor/engine,/area/science/explab) -"uCS" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters"; name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"uHG" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating/airless,/area/space/nearstation) -"uIn" = (/obj/machinery/power/terminal{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"uIB" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/closed/wall/r_wall,/area/engine/engineering) -"uLF" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"uMe" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) -"uMo" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/closet/crate/solarpanel_small,/turf/open/floor/plasteel,/area/engine/engineering) -"uMt" = (/obj/effect/turf_decal/plaque,/turf/open/floor/plating,/area/maintenance/department/engine) -"uQR" = (/obj/item/ammo_casing/shotgun/beanbag,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"uRk" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/engine,/area/engine/engineering) -"uUQ" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Maintenance"; req_access_txt = "10"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"uVf" = (/obj/structure/table/wood,/obj/item/book/manual/wiki/security_space_law,/obj/item/pen/fountain,/obj/item/stamp/law,/turf/open/floor/carpet,/area/lawoffice) -"uXG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"uXH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Solar Maintenance"; req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/solars/starboard) -"uZb" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space/nearstation) -"vay" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"vco" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"veF" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space/basic,/area/space) -"veM" = (/obj/machinery/suit_storage_unit/rd,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"vgp" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Containment Pen"; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"vhk" = (/obj/structure/chair,/turf/open/floor/carpet,/area/lawoffice) -"vjd" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"vli" = (/obj/structure/table,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/clothing/glasses/meson/engine,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/item/pipe_dispenser,/obj/machinery/light,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering) -"vlC" = (/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"vlF" = (/obj/item/coin/silver,/obj/effect/decal/cleanable/oil{icon_state = "floor5"},/obj/structure/light_construct/small{dir = 8},/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"vmG" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"vmY" = (/obj/structure/sign/warning/deathsposal{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"voh" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"vsk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"vsw" = (/obj/machinery/camera{c_tag = "Engineering Supermatter Starboard"; dir = 8; network = list("ss13","engine")},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"vsJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"vtl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/science) -"vtT" = (/turf/open/floor/plating,/area/maintenance/solars/port) -"vuP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plating,/area/storage/emergency/starboard) -"vuQ" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/department/science) -"vxp" = (/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Research Division Delivery"; req_access_txt = "47"},/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced,/obj/item/assembly/mousetrap,/turf/open/floor/engine,/area/science/explab) -"vxr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"vzz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness/recreation) -"vzA" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"vzP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/cargo) -"vzT" = (/obj/structure/table,/obj/item/stack/rods{amount = 5; layer = 3.3},/obj/effect/spawner/lootdrop/maintenance,/obj/item/assembly/prox_sensor{pixel_y = 2},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/department/cargo) -"vAq" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"vBE" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"vCC" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"vGg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/department/engine) -"vHf" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/department/science) -"vIc" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"vKq" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"vMx" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"vOw" = (/obj/machinery/door/airlock/grunge{name = "Library"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/dark,/area/library) -"vRi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/science) -"vRm" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/noticeboard{pixel_y = 32},/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow{pixel_x = -1; pixel_y = 3},/obj/item/clothing/gloves/color/yellow,/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Engineering Port Storage"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering) -"vTL" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"vTN" = (/obj/machinery/door/firedoor/heavy,/obj/machinery/door/airlock/research{name = "Toxins Lab"; req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/mixing) -"vVO" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/cable/yellow{icon_state = "2-8"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"vYN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8; external_pressure_bound = 140; name = "server vent"; pressure_checks = 0},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"wbB" = (/obj/machinery/atmospherics/components/binary/pump{name = "External Gas to Loop"},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/engineering) -"wbF" = (/obj/machinery/rnd/production/circuit_imprinter,/obj/machinery/camera{c_tag = "Engineering Starboard Aft"; dir = 8},/turf/open/floor/plasteel,/area/engine/engineering) -"wcs" = (/turf/open/floor/plasteel/dark,/area/engine/engineering) -"wdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/engine) -"weL" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/engine) -"wfc" = (/obj/structure/ore_box,/turf/open/floor/plating,/area/maintenance/department/science) -"wfs" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{pixel_y = 4},/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/science/xenobiology) -"wfG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) -"wfO" = (/mob/living/simple_animal/hostile/retaliate/poison/snake,/turf/open/floor/plating,/area/maintenance/department/engine) -"wfP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/meter,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"wig" = (/obj/machinery/vending/cigarette,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"wiB" = (/obj/item/shard{icon_state = "small"},/obj/item/stack/cable_coil/red,/turf/open/floor/plating,/area/maintenance/department/engine) -"wjm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering) -"wjQ" = (/obj/machinery/computer/shuttle/mining/common{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"wkZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/shower{dir = 4; name = "emergency shower"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"wlK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"wnJ" = (/obj/structure/sign/warning,/turf/closed/wall,/area/science/mixing) -"woq" = (/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wqu" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"wrU" = (/obj/machinery/photocopier,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/wood,/area/lawoffice) -"wtE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"wun" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"wwr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"wwG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wxb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"wxJ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "prison release"; name = "prisoner processing blast door"},/turf/open/floor/plasteel/dark,/area/security/brig) -"wzb" = (/obj/structure/chair,/turf/open/floor/wood,/area/maintenance/department/engine) -"wAI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/cargo) -"wBb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/explab) -"wBg" = (/obj/machinery/door/airlock/maintenance{id_tag = "Potty1"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/department/crew_quarters/bar) -"wDl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/engine/engineering) -"wDm" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wDZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"wEn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departure Lounge"},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"wFT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/science) -"wIo" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"wIv" = (/obj/machinery/power/apc/highcap/five_k{dir = 8; name = "Engineering Maintenance APC"; pixel_x = -25; pixel_y = 1},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/department/engine) -"wKa" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"wLo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "cmoshutters"; name = "Privacy shutters"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"wMF" = (/obj/effect/spawner/lootdrop/three_course_meal,/obj/effect/spawner/lootdrop/three_course_meal,/obj/structure/closet/crate,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/crew_quarters/dorms) -"wMM" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/engine) -"wMX" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/supermatter) -"wNq" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/engine) -"wOa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"wOf" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/cargo) -"wOS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/science/mixing) -"wQU" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/department/cargo) -"wRk" = (/obj/structure/rack,/obj/item/wrench,/turf/open/floor/plating,/area/maintenance/department/engine) -"wRz" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/security/brig) -"wRI" = (/obj/machinery/power/apc{dir = 1; name = "Brig Maintenance APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wTD" = (/obj/structure/table/wood,/obj/item/folder/red,/obj/item/folder/red,/obj/item/clothing/glasses/sunglasses,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 27},/obj/machinery/camera{c_tag = "Law Office"; dir = 8},/turf/open/floor/carpet,/area/lawoffice) -"wTO" = (/obj/structure/frame/computer,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/science) -"wUf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/storage/emergency/port) -"wUz" = (/obj/structure/chair/stool,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"wVC" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=Sci"; location = "Bar1"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"wXu" = (/obj/machinery/disposal/bin,/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) -"wYu" = (/obj/machinery/door/poddoor/shutters{id = "shootshut"},/turf/open/floor/plating,/area/maintenance/department/security/brig) -"wYK" = (/obj/machinery/power/supermatter_crystal/engine,/turf/open/floor/engine,/area/engine/supermatter) -"xah" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/cargo) -"xaO" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/department/engine) -"xaQ" = (/obj/structure/chair{dir = 4},/obj/machinery/firealarm{pixel_y = 29},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit/departure_lounge) -"xbJ" = (/turf/open/floor/plasteel/dark,/area/maintenance/department/crew_quarters/dorms) -"xee" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/exit/departure_lounge) -"xer" = (/obj/machinery/conveyor{dir = 1; id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal) -"xeB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/lawoffice) -"xgh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"xgG" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"xhj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/library/lounge) -"xhE" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit/departure_lounge) -"xhI" = (/obj/structure/cable/yellow{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering) -"xja" = (/obj/machinery/light/small{dir = 4},/obj/machinery/power/apc{dir = 4; name = "Library APC"; pixel_x = 24},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/library) -"xjc" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/library) -"xje" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"xjg" = (/mob/living/simple_animal/hostile/retaliate/goose,/turf/open/floor/wood,/area/maintenance/department/crew_quarters/dorms) -"xjK" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = -27},/obj/structure/rack,/obj/item/taperecorder,/obj/item/restraints/handcuffs,/obj/item/assembly/flash/handheld,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"xjT" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"xlg" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/turf/open/floor/plating,/area/maintenance/department/science) -"xlA" = (/obj/machinery/door/airlock/maintenance/abandoned,/turf/open/floor/plating,/area/maintenance/department/science) -"xmp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"xmE" = (/obj/structure/chair{dir = 8},/obj/structure/sign/poster/official/random{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/engine/engineering) -"xnm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/tcommsat/computer) -"xnP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"xpr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"xpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/department/science) -"xsO" = (/obj/item/ectoplasm,/turf/open/floor/plating,/area/maintenance/department/science) -"xuv" = (/obj/item/broken_bottle,/turf/open/floor/plating,/area/maintenance/solars/port) -"xvO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"xxw" = (/obj/machinery/atmospherics/components/binary/pump,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"xxO" = (/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/obj/machinery/door/window/northleft{base_state = "right"; dir = 2; icon_state = "right"; name = "Containment Pen #2"; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/science/xenobiology) -"xxS" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"xyl" = (/obj/structure/table,/obj/item/assembly/timer,/turf/open/floor/plating,/area/maintenance/department/cargo) -"xyB" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/security/brig) -"xzp" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"xzR" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/engine,/area/engine/engineering) -"xCV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/engine) -"xDj" = (/obj/structure/sign/poster/official/random{pixel_x = -32},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"xEx" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/bot,/turf/open/floor/engine,/area/science/storage) -"xFl" = (/obj/machinery/power/apc/highcap/five_k{areastring = "/area/tcommsat/server"; dir = 1; layer = 4; name = "Telecomms Server APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"xGc" = (/obj/effect/landmark/carpspawn,/turf/open/space,/area/space/station_ruins) -"xIx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/science/mixing) -"xJy" = (/obj/structure/chair/comfy/black,/obj/structure/sign/plaques/kiddie{desc = "An embossed piece of paper from the Third University of Harvard."; name = "\improper 'Diploma' frame"; pixel_y = 32},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/landmark/start/lawyer,/turf/open/floor/wood,/area/lawoffice) -"xKc" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall/r_wall,/area/science/xenobiology) -"xLi" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit/departure_lounge) -"xLC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/lawoffice) -"xNx" = (/obj/structure/lattice,/obj/structure/disposalpipe/junction/flip,/turf/open/space/basic,/area/space/nearstation) -"xNy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/engine,/area/engine/engineering) -"xOC" = (/obj/machinery/door/airlock/external{name = "Construction Zone"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/construction/mining/aux_base) -"xPa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/airalarm{pixel_y = 22},/turf/open/floor/engine,/area/science/explab) -"xQc" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock{name = "Port Emergency Storage"},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/freezer,/area/storage/emergency/port) -"xQk" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice/catwalk,/turf/open/space,/area/space/nearstation) -"xSd" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/chapel/monastery) -"xSX" = (/obj/machinery/airalarm/unlocked{pixel_y = 23},/turf/open/floor/plasteel/dark,/area/chapel/office) -"xSZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit/departure_lounge) -"xVt" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/structure/rack,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"xWl" = (/obj/item/pen,/obj/item/paper_bin{layer = 2.9},/obj/structure/table/glass,/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel,/area/science/xenobiology) -"xYV" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel/monastery) -"ybX" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/cargo) -"ycr" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plating,/area/maintenance/department/security/brig) -"ycx" = (/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/department/engine) -"ydf" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/department/engine) -"yfO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/construction/mining/aux_base) -"ygZ" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/department/cargo) -"ymb" = (/obj/machinery/camera{c_tag = "Engineering Telecomms Access"; dir = 8; network = list("tcomms")},/obj/machinery/light{dir = 4},/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/engineering) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space/basic, +/area/space) +"aab" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/cyborg, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aac" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aad" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"aae" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aaf" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aag" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aah" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aai" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aaj" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aak" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aal" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aam" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aan" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aao" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aap" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aaq" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"aar" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/item/tank/internals/plasma, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aas" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/oil, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engine/supermatter) +"aat" = ( +/obj/structure/closet/wardrobe/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/poster/official/fashion{ + pixel_y = -32 + }, +/obj/structure/sign/poster/official/fashion{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aau" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/structure/sign/poster/official/hydro_ad{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aav" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aaw" = ( +/obj/structure/sign/poster/official/hydro_ad, +/turf/closed/wall, +/area/hydroponics) +"aax" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/poster/official/medical_green_cross{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"aay" = ( +/obj/structure/sign/poster/official/medical_green_cross, +/turf/closed/wall, +/area/medical/medbay/central) +"aaz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/official/medical_green_cross{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"aaA" = ( +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"aaB" = ( +/obj/structure/closet/masks, +/obj/item/reagent_containers/food/snacks/deadmouse, +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"aaC" = ( +/obj/structure/sign/poster/contraband/scum{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"aaD" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/clothing/mask/balaclava, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaE" = ( +/obj/machinery/light/small, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaF" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/pool) +"aaG" = ( +/obj/structure/closet, +/obj/item/weldingtool, +/obj/item/crowbar, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaH" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"aaJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/fitness/pool) +"aaK" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"aaL" = ( +/turf/open/floor/plasteel/yellowsiding, +/area/crew_quarters/fitness/pool) +"aaM" = ( +/turf/open/floor/plasteel/yellowsiding/corner{ + dir = 8 + }, +/area/crew_quarters/fitness/pool) +"aaN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaO" = ( +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"aaP" = ( +/turf/open/floor/plasteel/yellowsiding{ + dir = 8 + }, +/area/crew_quarters/fitness/pool) +"aaQ" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aaR" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Pool" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/walk{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaW" = ( +/turf/open/floor/plasteel/yellowsiding{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"aaX" = ( +/obj/structure/bed, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"aaY" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/fitness/pool) +"aaZ" = ( +/obj/structure/bed, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"aba" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"abb" = ( +/obj/machinery/camera{ + c_tag = "Fitness Room" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"abc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellowsiding/corner, +/area/crew_quarters/fitness/pool) +"abd" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abe" = ( +/obj/machinery/vending/kink, +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abf" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/maintenance/department/science) +"abg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/lasertag/blue, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abj" = ( +/obj/machinery/pool/controller, +/turf/open/floor/plasteel/yellowsiding, +/area/crew_quarters/fitness/pool) +"abk" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/bed, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"abl" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"abm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellowsiding{ + dir = 4 + }, +/area/crew_quarters/fitness/pool) +"abn" = ( +/obj/machinery/pool/filter{ + pixel_y = 24 + }, +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"abo" = ( +/obj/structure/pool/ladder{ + dir = 2; + pixel_y = 24 + }, +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"abp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"abq" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellowsiding{ + dir = 4 + }, +/area/crew_quarters/fitness/pool) +"abr" = ( +/obj/machinery/pool/drain, +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"abs" = ( +/obj/structure/pool/Lboard, +/turf/open/pool, +/area/crew_quarters/fitness/pool) +"abt" = ( +/obj/structure/pool/Rboard, +/turf/open/floor/plasteel/yellowsiding{ + dir = 8 + }, +/area/crew_quarters/fitness/pool) +"abu" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"abv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"abw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/pool) +"abx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/closet/athletic_mixed, +/obj/item/toy/poolnoodle/blue, +/obj/item/toy/poolnoodle/red, +/obj/item/toy/poolnoodle/yellow, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"aby" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"abz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"abA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/yellowsiding/corner{ + dir = 4 + }, +/area/crew_quarters/fitness/pool) +"abB" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -2; + pixel_y = -27 + }, +/turf/open/floor/plasteel/yellowsiding{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"abC" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/yellowsiding{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"abD" = ( +/turf/open/floor/plasteel/yellowsiding/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/pool) +"abE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/fitness/pool"; + name = "Pool APC"; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/pool) +"abF" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/pool) +"abG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"abH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Pool" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"abI" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"abJ" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "MiniSat External Fore"; + dir = 1; + network = list("minisat") + }, +/turf/open/space, +/area/space/nearstation) +"abK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"abL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abN" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space) +"abO" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"abP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abS" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"abT" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Pool" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/fitness/pool) +"abU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/xmastree, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"abV" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"abW" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"abX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"abY" = ( +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"abZ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/effect/landmark/xmastree, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"acc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acd" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"ace" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acf" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber North"; + dir = 1; + network = list("minisat") + }, +/obj/machinery/light, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -24 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"ach" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"aci" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/ai_monitored/turret_protected/ai) +"acj" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -27 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"ack" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber Center"; + network = list("minisat") + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acl" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/ai"; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 24 + }, +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acm" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat External Port"; + dir = 8; + network = list("minisat") + }, +/turf/open/space, +/area/space/nearstation) +"acn" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber West"; + dir = 4; + network = list("minisat") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aco" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acp" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/command/glass{ + name = "AI Core"; + req_access_txt = "65" + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acq" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai"; + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acr" = ( +/obj/machinery/ai_slipper{ + uses = 8 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acs" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "AI Satellite turret control"; + pixel_x = -5; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"act" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/command/glass{ + name = "AI Core"; + req_access_txt = "65" + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acu" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber East"; + dir = 8; + network = list("minisat") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"acv" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat External Starboard"; + dir = 4; + network = list("minisat") + }, +/turf/open/space, +/area/space/nearstation) +"acw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acy" = ( +/obj/effect/landmark/start/ai, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = -9 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = -31 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = -9 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -28; + pixel_y = -28 + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 28; + pixel_y = -28 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acz" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acA" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acB" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acC" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acD" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber South"; + network = list("minisat") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 20 + }, +/obj/machinery/status_display/ai{ + pixel_y = 37 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acE" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = 24 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"acF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/plating/airless, +/area/ai_monitored/turret_protected/AIsatextAS) +"acG" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acH" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/ai_monitored/turret_protected/ai) +"acJ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acL" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/ai_slipper{ + uses = 8 + }, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acM" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white, +/area/ai_monitored/turret_protected/ai) +"acN" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space, +/area/space/nearstation) +"acO" = ( +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"acP" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"acQ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"acR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"acS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"acT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"acU" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"acV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"acW" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"acX" = ( +/obj/machinery/computer/monitor, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"acY" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"acZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"ada" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"adb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command/glass{ + name = "AI Core"; + req_access_txt = "65" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"adc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"add" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"ade" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/mmi, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/computer/rdconsole/robotics, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adg" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adi" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adk" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/aisat_interior"; + dir = 8; + name = "MiniSat Antechamber APC"; + pixel_x = -24 + }, +/obj/machinery/recharger, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adl" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adm" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adn" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"ado" = ( +/obj/structure/table, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/item/paper_bin, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adq" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"ads" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adt" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Maintenance Port Fore"; + dir = 1; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adx" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"ady" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adz" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber Observation"; + dir = 1; + network = list("minisat") + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adA" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"adB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adD" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Waste Out" + }, +/obj/machinery/camera{ + c_tag = "MiniSat Maintenance Starboard Fore"; + dir = 1; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"adG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adH" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"adM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Observation"; + req_one_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"adN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"adO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"adP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"adQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"adR" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"adS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"adU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"adV" = ( +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAP) +"adW" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Bridge Port Fore"; + network = list("minisat") + }, +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAP) +"adX" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"adY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"adZ" = ( +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAS) +"aea" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Bridge Starboard Fore"; + network = list("minisat") + }, +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"aec" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"aed" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"aee" = ( +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"aef" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/porta_turret/ai{ + installation = /obj/item/gun/energy/e_gun + }, +/turf/open/floor/plating/airless, +/area/ai_monitored/turret_protected/aisat_interior) +"aeh" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"aei" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aej" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/porta_turret/ai{ + installation = /obj/item/gun/energy/e_gun + }, +/turf/open/floor/plating/airless, +/area/ai_monitored/turret_protected/aisat_interior) +"aek" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"ael" = ( +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"aem" = ( +/turf/closed/wall/r_wall, +/area/security/prison) +"aen" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/prison) +"aeo" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/potato, +/obj/item/seeds/carrot, +/obj/item/seeds/corn, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aep" = ( +/obj/item/cultivator, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeq" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/seeds/glowshroom, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Permabrig Central"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aer" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aes" = ( +/obj/structure/easel, +/obj/item/canvas/nineteenXnineteen, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aet" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeu" = ( +/obj/machinery/biogenerator, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aev" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"aew" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aex" = ( +/obj/structure/lattice, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Bridge Port Aft"; + dir = 1; + network = list("minisat") + }, +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAP) +"aey" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aez" = ( +/obj/structure/lattice, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Bridge Starboard Aft"; + dir = 1; + network = list("minisat") + }, +/turf/open/space, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeC" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/grass, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeD" = ( +/obj/item/plant_analyzer, +/obj/item/shovel/spade, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeE" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/sunflower, +/obj/item/seeds/poppy, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeF" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeG" = ( +/obj/item/storage/crayons, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"aeO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Hallway"; + req_one_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aeP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"aeQ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeS" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"aeT" = ( +/obj/structure/bookcase, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeU" = ( +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeV" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aeW" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aeX" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aeY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/AIsatextAP"; + dir = 8; + name = "MiniSat Port Maintenance APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"aeZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Maintenance Port Aft"; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afc" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afe" = ( +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aff" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afg" = ( +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Foyer"; + network = list("minisat") + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afh" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Maintenance Starboard Aft"; + network = list("minisat") + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afm" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/AIsatextAS"; + dir = 4; + name = "MiniSat Starboard Maintenance APC"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afn" = ( +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afo" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afp" = ( +/obj/item/storage/dice, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afq" = ( +/obj/structure/table, +/obj/item/instrument/harmonica, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aft" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afu" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air Out" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afv" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afw" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afy" = ( +/obj/effect/landmark/start/cyborg, +/obj/item/beacon, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afB" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afD" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afE" = ( +/obj/item/toy/cards/deck, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afF" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afG" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afI" = ( +/obj/machinery/computer/arcade{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"afJ" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space/nearstation) +"afK" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afL" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afM" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"afN" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"afO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"afR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"afS" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afT" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool{ + layer = 5 + }, +/obj/item/extinguisher{ + layer = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAS) +"afU" = ( +/turf/closed/wall, +/area/security/execution/transfer) +"afX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"afZ" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"aga" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"agb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"agc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + icon_state = "right"; + name = "Unisex Showers" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agd" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"age" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agf" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"agg" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"agh" = ( +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agi" = ( +/obj/machinery/door/poddoor{ + id = "executionspaceblast" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agl" = ( +/obj/structure/table/glass, +/obj/item/restraints/handcuffs, +/obj/item/razor, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agn" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"ago" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agp" = ( +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agr" = ( +/obj/machinery/computer/teleporter{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"ags" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"agt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agu" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agw" = ( +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Solutions Room"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agx" = ( +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agy" = ( +/turf/closed/wall, +/area/security/prison) +"agz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "permacell2"; + name = "cell blast door" + }, +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt2"; + name = "Cell 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"agA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/security/prison) +"agB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "permacell1"; + name = "cell blast door" + }, +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt1"; + name = "Cell 1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"agC" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agD" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agE" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agI" = ( +/obj/structure/bed, +/obj/machinery/camera{ + c_tag = "Permabrig Cell 2"; + network = list("ss13","prison") + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/toy/plush/slimeplushie, +/turf/open/floor/plasteel, +/area/security/prison) +"agK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt2"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/prison) +"agL" = ( +/obj/structure/bed, +/obj/machinery/camera{ + c_tag = "Permabrig Cell 1"; + network = list("ss13","prison") + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/toy/plush/lizardplushie, +/turf/open/floor/plasteel, +/area/security/prison) +"agM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"agN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "permabolt1"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/prison) +"agO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"agP" = ( +/turf/closed/wall, +/area/security/main) +"agQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"agR" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"agS" = ( +/obj/structure/transit_tube, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"agT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/security/execution/transfer) +"agV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Solutions Room"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"agW" = ( +/obj/machinery/flasher{ + id = "PCell 2"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/prison) +"agY" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/security/prison) +"agZ" = ( +/obj/machinery/flasher{ + id = "PCell 1"; + pixel_x = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/prison) +"aha" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"ahb" = ( +/obj/structure/toilet/secret/prison{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"ahd" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"ahi" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"ahj" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/item/clothing/suit/straight_jacket, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahk" = ( +/obj/machinery/button/flasher{ + id = "executionflash"; + pixel_x = 6; + pixel_y = 27 + }, +/obj/machinery/button/door{ + id = "executionspaceblast"; + name = "Vent to Space"; + pixel_x = -6; + pixel_y = 32; + req_access_txt = "7" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/button/ignition{ + id = "secigniter"; + pixel_x = 6; + pixel_y = 36 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahl" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahm" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 2"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/security/prison) +"aho" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/prison) +"ahp" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 1"; + req_access_txt = "2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahq" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube, +/turf/open/space/basic, +/area/space/nearstation) +"aht" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ahu" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"ahv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"ahw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"ahx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahz" = ( +/obj/machinery/button/door{ + id = "executionfireblast"; + name = "Transfer Area Lockdown"; + pixel_x = 25; + pixel_y = -5; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = 24; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/execution/transfer) +"ahB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahC" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "PCell 2"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "permacell2"; + name = "Cell 2 Lockdown"; + pixel_x = 4; + pixel_y = 34; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"ahF" = ( +/obj/machinery/camera{ + c_tag = "Brig Prison Hallway"; + network = list("ss13","prison") + }, +/obj/machinery/computer/security/telescreen/prison{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahG" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "PCell 1"; + pixel_x = 5; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "permacell1"; + name = "Cell 1 Lockdown"; + pixel_x = 4; + pixel_y = 34; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahH" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahJ" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Prison Wing APC"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ahK" = ( +/obj/structure/table, +/obj/item/melee/chainofcommand, +/obj/item/melee/baton, +/turf/open/floor/plasteel, +/area/security/prison) +"ahL" = ( +/turf/closed/wall/r_wall, +/area/security/armory) +"ahM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ahR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/turf/open/space/basic, +/area/space/nearstation) +"ahS" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"ahT" = ( +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"ahU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"ahV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahW" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Prisoner Transfer Centre"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ahZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aia" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aib" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/prison) +"aic" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aid" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aie" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aif" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aig" = ( +/turf/open/floor/plasteel, +/area/security/prison) +"aih" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/restraints/handcuffs, +/obj/item/razor, +/turf/open/floor/plasteel, +/area/security/prison) +"aii" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aij" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/poster/random_contraband, +/obj/item/clothing/suit/armor/navyblue/russian, +/obj/item/grenade/plastic/c4, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aik" = ( +/obj/structure/closet/secure_closet/lethalshots, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor" + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ail" = ( +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aim" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ain" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"aio" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"aip" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"aiq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"air" = ( +/obj/vehicle/ridden/secway, +/obj/item/key/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ais" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ait" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiu" = ( +/turf/closed/wall, +/area/maintenance/department/security/brig) +"aiv" = ( +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"aiw" = ( +/obj/machinery/power/emitter/anchored{ + dir = 1; + state = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/transfer) +"aix" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"aiy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"aiz" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"aiA" = ( +/turf/closed/wall/r_wall, +/area/security/execution/transfer) +"aiB" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiD" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiF" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aiJ" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiK" = ( +/obj/structure/table, +/obj/item/assembly/signaler, +/obj/item/electropack, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aiL" = ( +/obj/structure/table, +/obj/item/storage/box/flashbangs{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/lockbox/loyalty{ + layer = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aiM" = ( +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aiN" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aiO" = ( +/obj/structure/table, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/machinery/power/apc/highcap/five_k{ + dir = 4; + name = "Armory APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aiP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/main) +"aiQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/main) +"aiR" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hos) +"aiS" = ( +/turf/closed/wall, +/area/maintenance/department/crew_quarters/dorms) +"aiT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aiU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/barsign, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aiV" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiW" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiX" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiY" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aiZ" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"aja" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ajb" = ( +/obj/structure/closet/secure_closet/injection, +/obj/machinery/power/apc{ + dir = 4; + name = "Prisoner Transfer Centre"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ajc" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"ajd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aje" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"ajf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ajg" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/obj/item/clothing/suit/armor/laserproof, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajh" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"aji" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajj" = ( +/obj/structure/rack, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajk" = ( +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajl" = ( +/obj/structure/filingcabinet, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajm" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box{ + pixel_y = 2 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajn" = ( +/obj/structure/table, +/obj/structure/sign/plaques/golden{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajo" = ( +/obj/machinery/vending/coffee, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajp" = ( +/obj/machinery/photocopier, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajq" = ( +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajr" = ( +/obj/item/reagent_containers/food/snacks/donut/chaos, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"ajs" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hos) +"ajt" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aju" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"ajv" = ( +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ajx" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ajy" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ajz" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ajA" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_ne"; + name = "northeast of station"; + width = 23 + }, +/turf/open/space, +/area/space/nearstation) +"ajB" = ( +/obj/item/storage/box/mousetraps, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajC" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajD" = ( +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajE" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajF" = ( +/obj/machinery/atmospherics/components/unary/tank/oxygen, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajG" = ( +/obj/machinery/atmospherics/components/unary/tank/nitrogen, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ajH" = ( +/turf/closed/wall, +/area/security/processing/cremation) +"ajI" = ( +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Crematorium"; + req_access_txt = "2;27" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"ajJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"ajK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"ajL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"ajM" = ( +/turf/closed/wall, +/area/security/brig) +"ajN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajO" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/structure/sign/poster/official/safety_report{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajP" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajR" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajT" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"ajU" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Security Office APC"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajV" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"ajW" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"ajX" = ( +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajY" = ( +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ajZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aka" = ( +/obj/machinery/suit_storage_unit/hos, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akb" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/plaques/kiddie{ + desc = "An embossed piece of paper from the University of Nanotrasen at Portpoint."; + name = "\improper 'Diploma' frame"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akc" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#706891" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akd" = ( +/obj/structure/table/wood, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/storage/box/deputy, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"ake" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/machinery/button/door{ + id = "hos_spess_shutters"; + name = "Space shutters"; + pixel_x = 24; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akf" = ( +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"akg" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akh" = ( +/obj/effect/decal/cleanable/oil{ + icon_state = "floor5" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akj" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "space-bridge access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ako" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akp" = ( +/obj/machinery/door/airlock/public/glass{ + name = "space-bridge access" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"akr" = ( +/obj/machinery/washing_machine, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = -31 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aks" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"akt" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/button/door{ + id = "mainthideout"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aku" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 1; + node1_concentration = 0.2; + node2_concentration = 0.8; + on = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"akv" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"akw" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"akx" = ( +/obj/structure/bodycontainer/crematorium, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"aky" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"akz" = ( +/obj/machinery/button/crematorium{ + pixel_x = 25 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Crematorium APC"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"akA" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"akB" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"akC" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/structure/table/glass, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"akD" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"akE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"akF" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"akI" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Room"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akK" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/camera{ + c_tag = "Brig Evidence Room"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akL" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun/advtaser, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/gun/energy/e_gun/advtaser, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akN" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/rack, +/obj/item/key/security, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akP" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"akQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"akR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"akT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"akU" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akV" = ( +/obj/item/storage/secure/safe{ + pixel_x = -22; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"akZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hos_spess_shutters"; + name = "Space shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"ala" = ( +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"alb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/turf/open/space, +/area/space/nearstation) +"alc" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigars, +/obj/item/stack/spacecash/c20, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ale" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"alf" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"alg" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"alh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "supplybridge" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ali" = ( +/obj/machinery/door/airlock/abandoned{ + id_tag = "mainthideout"; + name = "Hideout" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alj" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"all" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"aln" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Brig Crematorium"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alp" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/brig) +"alq" = ( +/obj/item/storage/box/bodybags, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/item/reagent_containers/syringe{ + name = "steel point" + }, +/obj/item/reagent_containers/glass/bottle/charcoal, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"alr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"als" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"alt" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Brig Infirmary" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"alu" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"aly" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alz" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alA" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"alB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"alC" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/pen, +/obj/item/folder/red{ + layer = 2.9; + pixel_x = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"alD" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel, +/area/security/main) +"alE" = ( +/turf/open/floor/plasteel, +/area/security/main) +"alF" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel, +/area/security/main) +"alG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"alH" = ( +/turf/open/floor/plasteel/dark, +/area/security/main) +"alI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"alJ" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alL" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/stamp/hos, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alM" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"alN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hos_spess_shutters"; + name = "Space shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"alO" = ( +/obj/structure/transit_tube/diagonal, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"alP" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"alQ" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/department/crew_quarters/dorms) +"alR" = ( +/obj/effect/landmark/blobstart, +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"alS" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"alT" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alU" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Supply to Security" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"alW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alX" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"alZ" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/camera{ + c_tag = "Brig Infirmary"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ama" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amc" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Brig Infirmary" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ame" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amf" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/ten_k{ + dir = 4; + name = "Brig APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amg" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"amh" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"ami" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Armory"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"amj" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"amk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Armory"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aml" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/warden) +"amm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security Office"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = -31 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amo" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amp" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amq" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"amr" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ams" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"amt" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Head of Security"; + req_access_txt = "58" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"amu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"amv" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amx" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amy" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amz" = ( +/obj/machinery/computer/security/hos{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"amA" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"amB" = ( +/obj/structure/transit_tube/crossing/horizontal, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"amC" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"amD" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"amF" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/department/crew_quarters/dorms) +"amG" = ( +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/department/crew_quarters/dorms) +"amH" = ( +/obj/machinery/door/airlock/atmos/abandoned{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"amI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_one_access_txt = "2;27" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"amJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/security/processing/cremation) +"amK" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 1; + freq = 1400; + location = "Security" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"amL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"amM" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amO" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"amP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amR" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"amS" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/clothing/mask/gas/sechailer, +/obj/machinery/power/apc{ + dir = 8; + name = "Brig Control APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amT" = ( +/obj/machinery/computer/prisoner/management, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amU" = ( +/obj/machinery/computer/security, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Control Room" + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amV" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amX" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"amZ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ana" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"anc" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/security/main) +"and" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"ane" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"anf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ang" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"ani" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"anj" = ( +/obj/structure/table/wood, +/obj/item/phone, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"ank" = ( +/obj/machinery/computer/card/minor/hos{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hos) +"anl" = ( +/obj/structure/transit_tube/diagonal, +/turf/open/space/basic, +/area/space/nearstation) +"anm" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Pete's Speakeasy" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"anq" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"anr" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ans" = ( +/obj/item/wirecutters, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ant" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"anu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"anv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/security/processing/cremation) +"anw" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing/cremation) +"anx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Brig Infirmary Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"any" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anz" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"anC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anI" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anJ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"anK" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"anL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"anM" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"anN" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"anO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"anP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"anQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"anR" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anS" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_y = -27 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anV" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "Head of Security's Office APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"anW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hos_spess_shutters"; + name = "Space shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"anX" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"anY" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"aob" = ( +/obj/structure/closet/emcloset, +/obj/item/camera, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aod" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aof" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aog" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aok" = ( +/obj/machinery/computer/security/labor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aol" = ( +/obj/machinery/computer/shuttle/labor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aom" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aon" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"aoo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aop" = ( +/obj/structure/bed/dogbed, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -32 + }, +/mob/living/simple_animal/pet/dog/pug{ + name = "McGriff" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoq" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aor" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aos" = ( +/obj/machinery/door/airlock/security{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aot" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aou" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aov" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aow" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aox" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aoy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aoz" = ( +/turf/closed/wall, +/area/maintenance/fore) +"aoB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aoH" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/solar/port) +"aoI" = ( +/obj/structure/lattice, +/turf/open/space, +/area/solar/port) +"aoJ" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space, +/area/solar/port) +"aoK" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"aoL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aoO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Gulag Teleporter"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/box/prisoner, +/obj/item/razor{ + pixel_x = -6 + }, +/obj/item/paper/guides/jobs/security/labor_camp, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aoP" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aoQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"aoR" = ( +/obj/item/book/manual/wiki/security_space_law, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoS" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Entrance Lockdown"; + pixel_x = 5; + pixel_y = -2 + }, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Permabrig Lockdown"; + pixel_x = 5; + pixel_y = 8; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoT" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/warden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoV" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoX" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/laser_pointer/red, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light_switch{ + pixel_y = -22 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aoZ" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"apa" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"apb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"apc" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 7 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"apd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ape" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"apf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"apg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Security Access"; + req_access_txt = "1" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aph" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"api" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Fore Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apk" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apl" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apn" = ( +/turf/open/floor/plating, +/area/maintenance/fore) +"apo" = ( +/obj/structure/transit_tube/diagonal/crossing, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"app" = ( +/obj/machinery/camera{ + c_tag = "Bridge Starboard Exterior"; + dir = 1 + }, +/turf/open/space, +/area/space/nearstation) +"apr" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/plasteel/dark, +/area/gateway) +"apt" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/clothing/mask/cigarette, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"apu" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"apv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"apw" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/item/camera_film, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/crew_quarters/dorms) +"apz" = ( +/obj/item/target/clown, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"apB" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"apE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"apF" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"apG" = ( +/obj/machinery/gulag_teleporter, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"apH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"apJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/warden) +"apK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Armory Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63" + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/warden) +"apM" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"apN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = "1" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"apQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"apR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) +"apS" = ( +/obj/structure/transit_tube/curved, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"apT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"apU" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"apV" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"apW" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"apX" = ( +/turf/closed/wall, +/area/crew_quarters/dorms) +"aqa" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"aqb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/space, +/area/solar/port) +"aqc" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"aqd" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"aqe" = ( +/obj/item/target/alien, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aqg" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aqh" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aqi" = ( +/obj/structure/closet, +/obj/item/clothing/under/color/black, +/obj/item/clothing/under/color/red, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aqm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqq" = ( +/obj/machinery/camera{ + c_tag = "Brig Cells" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqs" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqv" = ( +/obj/machinery/camera{ + c_tag = "Brig Entrance" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqA" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aqC" = ( +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aqD" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aqE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"aqF" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"aqG" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aqH" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"aqI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "bridge external shutters" + }, +/turf/open/floor/plating, +/area/bridge) +"aqJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"aqK" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"aqL" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aqM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"aqN" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"aqO" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Vault APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"aqP" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aqQ" = ( +/obj/structure/window/reinforced, +/obj/machinery/power/apc{ + dir = 8; + name = "Gateway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aqR" = ( +/obj/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aqS" = ( +/obj/machinery/door/window{ + name = "Gateway Chamber"; + req_access_txt = "62" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/gateway) +"aqT" = ( +/obj/machinery/computer/arcade, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"aqU" = ( +/obj/machinery/washing_machine, +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"aqV" = ( +/obj/machinery/washing_machine, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"aqY" = ( +/obj/docking_port/stationary{ + dwidth = 2; + height = 6; + id = "monastery_shuttle_station"; + name = "Station"; + roundstart_template = /datum/map_template/shuttle/escape_pod/large; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"ara" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/port) +"arc" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ard" = ( +/obj/item/clothing/head/cone, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ari" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/machinery/button/door{ + id = "prison release"; + name = "Labor Camp Shuttle Lockdown"; + pixel_y = -25; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ark" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"arl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"arm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aro" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arr" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ars" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"art" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aru" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arv" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arw" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arx" = ( +/obj/item/flashlight/lamp, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ary" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arz" = ( +/obj/machinery/camera{ + c_tag = "Brig Interrogation"; + dir = 8; + network = list("interrogation") + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"arA" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"arB" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Bridge MiniSat Access"; + dir = 4 + }, +/turf/open/floor/plating, +/area/bridge) +"arC" = ( +/obj/structure/transit_tube_pod{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 1 + }, +/turf/open/floor/plating, +/area/bridge) +"arD" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/bridge) +"arE" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bridge) +"arF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"arG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"arH" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arI" = ( +/obj/machinery/computer/med_data, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arJ" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arK" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arL" = ( +/obj/machinery/computer/card, +/obj/machinery/camera{ + c_tag = "Bridge - Central" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arM" = ( +/obj/machinery/computer/communications, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arN" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arO" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arP" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arQ" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arR" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"arS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"arT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"arU" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"arV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"arW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/ore_silo, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"arX" = ( +/obj/machinery/camera{ + c_tag = "Gateway"; + dir = 4 + }, +/obj/structure/table, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/paper/pamphlet, +/turf/open/floor/plasteel, +/area/gateway) +"arY" = ( +/obj/machinery/computer/gateway_control, +/turf/open/floor/plasteel, +/area/gateway) +"arZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"asa" = ( +/obj/structure/table, +/obj/item/radio/off{ + pixel_y = 6 + }, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/radio/off, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/item/radio/off, +/turf/open/floor/plasteel, +/area/gateway) +"asb" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"asc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"asd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"ase" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"asf" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"asg" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/bedsheetbin/color, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"ash" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"asi" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"asj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"aso" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"asr" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"asu" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asy" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asA" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asB" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asE" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"asG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"asH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asI" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asJ" = ( +/obj/item/folder/red, +/obj/item/taperecorder, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asK" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/bridge) +"asN" = ( +/turf/open/floor/plasteel, +/area/bridge) +"asO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/bridge) +"asP" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"asQ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/keycard_auth{ + pixel_x = -24; + pixel_y = 10 + }, +/obj/machinery/button/door{ + id = "bridgespace"; + name = "Bridge Space Lockdown"; + pixel_x = -24; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"asR" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"asS" = ( +/turf/open/floor/plasteel/dark, +/area/bridge) +"asT" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/button/door{ + id = "bridgespace"; + name = "Bridge Space Lockdown"; + pixel_x = 24; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"asU" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/bridge) +"asV" = ( +/obj/structure/closet/crate/goldcrate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"asW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"asX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"asY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/nuke_storage) +"asZ" = ( +/obj/structure/closet/crate/silvercrate, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"ata" = ( +/obj/machinery/light_switch{ + pixel_x = -20 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"atb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"atc" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"atd" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"atf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/dorms) +"atg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"ath" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Laundry Room"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"ati" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"atj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"atk" = ( +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"atl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"atn" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/recreation) +"atp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green, +/area/maintenance/department/security/brig) +"atq" = ( +/turf/open/floor/circuit/green, +/area/maintenance/department/security/brig) +"atv" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/security/brig) +"atw" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atx" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/brig) +"aty" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"atA" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atC" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/brig) +"atE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atF" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"atG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atH" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"atI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"atJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"atK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Emergency Escape"; + req_access_txt = "20" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/fore) +"atL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/bridge) +"atM" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"atN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/bridge) +"atO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/bridge) +"atP" = ( +/obj/machinery/computer/monitor{ + name = "Bridge Power Monitoring Console" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atQ" = ( +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atU" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atX" = ( +/obj/machinery/computer/shuttle/labor{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"atY" = ( +/turf/closed/wall, +/area/bridge) +"atZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"aua" = ( +/obj/structure/closet/secure_closet/freezer/money, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/clothing/head/bearpelt, +/obj/item/skub, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aub" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"auc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aud" = ( +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("vault") + }, +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aue" = ( +/obj/structure/safe, +/obj/item/bikehorn/golden, +/obj/item/ammo_box/a357, +/obj/item/tank/internals/plasma/full, +/obj/item/disk/nuclear/fake, +/obj/item/stack/ore/diamond, +/obj/item/gun/energy/disabler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"auf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aug" = ( +/obj/machinery/button/door{ + id = "stationawaygate"; + name = "Gateway Access Shutter Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/crate/internals, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/gateway) +"auh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aui" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/gateway) +"auj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/crew_quarters/dorms) +"auk" = ( +/obj/machinery/door/airlock{ + name = "Laundry Room" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"aul" = ( +/obj/machinery/computer/shuttle/monastery_shuttle, +/obj/structure/sign/warning/pods{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/dorms) +"aum" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"aur" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"aus" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aut" = ( +/obj/item/clothing/head/collectable/police, +/turf/open/floor/mech_bay_recharge_floor, +/area/maintenance/department/security/brig) +"auu" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"aux" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = -25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auz" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/brig) +"auB" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/paper_bin, +/obj/item/pen{ + layer = 3.1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auE" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 36; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "63" + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = 6; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auG" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auH" = ( +/turf/closed/wall, +/area/crew_quarters/heads/captain) +"auI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/heads/captain) +"auJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"auK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "bridge external shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "bridge external shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/bridge) +"auN" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auR" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auT" = ( +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"auU" = ( +/obj/structure/closet/emcloset/anchored, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/bridge) +"auV" = ( +/turf/open/floor/plating, +/area/bridge) +"auW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"auX" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"auY" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + req_access_txt = "53" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"auZ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"ava" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Gateway Access"; + req_access_txt = "62" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"avb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"avc" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/gateway) +"avd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Dorm3Shutters"; + name = "Dorm Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"ave" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Dorm3Shutters"; + name = "Privacy Shutters Control"; + pixel_y = 26 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"avf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"avg" = ( +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"avh" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avi" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Dormitories Fore" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the monastery."; + name = "Monastery Monitor"; + network = list("monastery"); + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avk" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avl" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/computer/cryopod{ + pixel_y = 30 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"avm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"avn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"avp" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/box; + width = 9 + }, +/turf/open/space/basic, +/area/space) +"avq" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avr" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Labor Shuttle Dock"; + dir = 8 + }, +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avs" = ( +/obj/structure/bed, +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/obj/item/bedsheet/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avu" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avv" = ( +/obj/structure/bed, +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/obj/item/bedsheet/green, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avw" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avx" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avy" = ( +/obj/structure/bed, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/item/bedsheet/orange, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avA" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"avC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avD" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avF" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"avG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/heads/captain) +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/curtain, +/obj/item/soap/deluxe, +/obj/item/bikehorn/rubberducky, +/obj/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"avI" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"avJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"avK" = ( +/obj/structure/toilet/secret/low_loot{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"avL" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/maintenance/fore) +"avM" = ( +/obj/machinery/door/airlock/command{ + name = "Balcony"; + req_access_txt = "20" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"avN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avO" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/camera{ + c_tag = "Bridge MiniSat Access Foyer"; + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avQ" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"avR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avV" = ( +/obj/structure/table/glass, +/obj/item/storage/box/ids{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/PDAs, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avW" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avX" = ( +/obj/structure/table/glass, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avY" = ( +/obj/structure/table/glass, +/obj/item/aicard, +/turf/open/floor/plasteel/dark, +/area/bridge) +"avZ" = ( +/obj/structure/table/glass, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/item/laser_pointer/blue, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awb" = ( +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Bridge External Access"; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"awd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"awe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awh" = ( +/obj/machinery/camera{ + c_tag = "Vault Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awn" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/crew_quarters/dorms) +"awo" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/dorms) +"awp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/crew_quarters/dorms) +"awq" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/dorms) +"awr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aws" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"awt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"awu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"awv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aww" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"awB" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/crew_quarters/fitness/recreation) +"awC" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/fitness/recreation"; + dir = 1; + name = "Fitness Room APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"awD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"awE" = ( +/obj/item/storage/briefcase, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"awH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awI" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"awJ" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"awK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awL" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awM" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"awN" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awO" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/item/radio, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awP" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/reagent_containers/food/snacks/donut, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/structure/table/reinforced, +/obj/item/folder/red{ + layer = 2.9 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awQ" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awR" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awS" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/heads/captain) +"awT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Captain's Office Access"; + req_access_txt = "20" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"awU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"awY" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"awZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axb" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axe" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/computer/rdconsole{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) +"axi" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"axj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"axk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"axl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"axm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs, +/area/hallway/primary/central) +"axn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/hallway/primary/central) +"axo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"axp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"axq" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"axr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"axt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"axu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"axv" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/fitness/recreation) +"axw" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"axy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"axz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"axA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"axB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"axC" = ( +/turf/closed/wall, +/area/maintenance/solars/port) +"axE" = ( +/obj/machinery/door/poddoor/preopen{ + id = "prison release"; + name = "prisoner processing blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axF" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axG" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axJ" = ( +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axN" = ( +/obj/structure/dresser, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"axO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"axP" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Captain's Quarters" + }, +/obj/item/clothing/suit/armor/riot/knight/blue, +/obj/item/clothing/head/helmet/knight/blue, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"axQ" = ( +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"axR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"axS" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Captain's Office APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/item/kirbyplants/random, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axT" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_y = 30 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axU" = ( +/obj/machinery/computer/card, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axV" = ( +/obj/machinery/computer/communications, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axW" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"axX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"axZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aya" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aye" = ( +/obj/machinery/door/airlock/command{ + name = "External Access"; + req_one_access_txt = "19; 65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"ayf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "bridge external shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"ayh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/stairs, +/area/hallway/primary/central) +"ayi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Dorm2Shutters"; + name = "Dorm Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"ayj" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Dorm2Shutters"; + name = "Privacy Shutters Control"; + pixel_y = 26 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayl" = ( +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aym" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"ayn" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayo" = ( +/obj/structure/table/wood, +/obj/item/storage/dice, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayq" = ( +/obj/structure/table/wood, +/obj/item/storage/backpack, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ayr" = ( +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"ays" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"ayt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Recreation Room" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"ayu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"ayw" = ( +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"ayx" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"ayy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/port) +"ayz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ayA" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "portsolar"; + name = "Port Solar Control" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ayB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ayC" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Port Solar APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ayD" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ayE" = ( +/obj/machinery/button/door{ + id = "prison release"; + name = "Labor Camp Shuttle Lockdown"; + pixel_x = -25; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayF" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayI" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=BrigS2"; + location = "BrigP" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayN" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=BrigP"; + location = "BrigS1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayO" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayQ" = ( +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayR" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ayS" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"ayT" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"ayU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"ayV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"ayW" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"ayX" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"ayY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"ayZ" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aza" = ( +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"azb" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"azc" = ( +/obj/item/storage/secure/safe{ + pixel_x = 35; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"azd" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aze" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azg" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azh" = ( +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azk" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + name = "AI Upload turret control"; + pixel_y = -25 + }, +/obj/machinery/camera{ + c_tag = "Bridge Central"; + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/bridge"; + dir = 4; + name = "Bridge APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azp" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Bridge External Access"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/bridge) +"azq" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"azr" = ( +/obj/structure/table/wood, +/obj/item/storage/book/bible, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azs" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azu" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/dorms) +"azv" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azx" = ( +/obj/structure/table/wood, +/obj/item/paicard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azy" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"azA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"azB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Recreation Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azE" = ( +/obj/structure/table, +/obj/item/paper/fluff/holodeck/disclaimer, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Holodeck"; + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"azG" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"azH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solar/port) +"azI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space, +/area/solar/port) +"azJ" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/solar/port) +"azK" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"azL" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/port) +"azN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azQ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azS" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azY" = ( +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"azZ" = ( +/mob/living/simple_animal/bot/secbot/beepsky{ + name = "Officer Beepsky" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aAa" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/potato{ + name = "\improper Beepsky's emergency battery" + }, +/obj/item/paper/fluff/jobs/security/beepsky_mom, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aAb" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Fore Primary Hallway APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAd" = ( +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAe" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAf" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Port"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAg" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAk" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Tool"; + location = "BrigS2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAn" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Starboard"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAo" = ( +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAp" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"aAq" = ( +/obj/structure/table/wood, +/obj/item/storage/box/matches, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/reagent_containers/food/drinks/flask/gold, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"aAr" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"aAs" = ( +/obj/structure/table/wood, +/obj/item/kitchen/fork, +/obj/item/card/id/captains_spare, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/captain) +"aAt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aAu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAv" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAw" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAx" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAy" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/captain, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aAz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Entrance Lockdown"; + pixel_x = -24; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aAA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aAB" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"aAC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access_txt = "16" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aAD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aAE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Entrance Lockdown"; + pixel_x = 24; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aAF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"aAG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"aAH" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"aAI" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAM" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aAN" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"aAO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aAP" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/comfy{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aAQ" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"aAS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aAT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aAU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aAV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solar/port) +"aAW" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/multitool, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aAX" = ( +/obj/structure/chair/stool, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aAY" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aBa" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"aBc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aBd" = ( +/turf/closed/wall, +/area/security/detectives_office) +"aBe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "datboidetective"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aBf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aBg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aBh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aBi" = ( +/turf/closed/wall, +/area/storage/primary) +"aBj" = ( +/turf/closed/wall/r_wall, +/area/storage/primary) +"aBk" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/vending/wardrobe/cap_wardrobe, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBm" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBn" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBo" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBp" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aBq" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aBr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aBs" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBt" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBx" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/turret_protected/ai_upload"; + dir = 1; + name = "Upload APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aBy" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aBz" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/item/storage/secure/safe{ + pixel_x = -22; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBA" = ( +/obj/machinery/computer/security/telescreen/vault{ + pixel_y = 30 + }, +/obj/machinery/computer/security/mining, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBB" = ( +/obj/machinery/computer/cargo/request, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBC" = ( +/obj/structure/closet/secure_closet/hop, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the monastery."; + name = "Monastery Monitor"; + network = list("monastery"); + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBD" = ( +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 2 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office" + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBE" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = 30 + }, +/obj/machinery/pdapainter{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBF" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/structure/bed/dogbed/ian, +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBG" = ( +/obj/machinery/vending/cart{ + req_access_txt = "57" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aBH" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Central Hall APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aBI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aBJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aBK" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/crowbar, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aBL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Dorm1Shutters"; + name = "Dorm Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"aBM" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Dorm1Shutters"; + name = "Privacy Shutters Control"; + pixel_y = 26 + }, +/obj/effect/spawner/lootdrop/bedsheet, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aBN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aBO" = ( +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aBP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aBQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aBR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aBS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aBT" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aBU" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aBW" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aBX" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/shoes/jackboots, +/obj/item/storage/backpack, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/fitness/recreation) +"aBY" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aBZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"aCa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/port) +"aCc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aCd" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aCe" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/wood, +/area/lawoffice) +"aCf" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/turf/open/floor/wood, +/area/lawoffice) +"aCg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aCh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aCi" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants{ + icon_state = "plant-18"; + pixel_y = 12 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCj" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Detective's office"; + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCk" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCm" = ( +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCn" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "datboidetective"; + name = "Privacy Shutters"; + pixel_x = 2; + pixel_y = 26 + }, +/obj/machinery/light_switch{ + pixel_x = -8; + pixel_y = 27 + }, +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCo" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/hand_labeler, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aCp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aCq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aCr" = ( +/obj/machinery/vending/assist, +/obj/structure/sign/poster/official/pda_ad{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCs" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCt" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/analyzer, +/obj/machinery/requests_console{ + department = "Tool Storage"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCu" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCv" = ( +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/assembly/igniter, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage" + }, +/obj/item/assembly/voice, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCw" = ( +/obj/structure/table, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/multitool, +/obj/item/multitool, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/flashlight, +/obj/item/electronics/airlock, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCx" = ( +/obj/structure/sign/poster/official/obey{ + pixel_y = 32 + }, +/obj/machinery/disposal/deliveryChute{ + name = "Crate Disposal Chute"; + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + name = "Crate Disposal Chute" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aCy" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCz" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aCD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"aCE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aCF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aCG" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/quarantine, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Port"; + dir = 4; + network = list("aiupload") + }, +/obj/item/aiModule/reset, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCK" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCM" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/freeform, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Starboard"; + dir = 8; + network = list("aiupload") + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aCN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"aCO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aCP" = ( +/obj/structure/table/wood, +/obj/item/pen{ + layer = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = -26; + pixel_y = 6 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCQ" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCR" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCS" = ( +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCT" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aCW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aCX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aCY" = ( +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aCZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aDa" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aDb" = ( +/obj/structure/table/wood, +/obj/item/storage/book/bible, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aDc" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aDd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/dorms) +"aDe" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/dorms) +"aDf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aDg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aDh" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Dormitories Aft"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aDi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/sign/departments/restroom{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white/corner, +/area/crew_quarters/dorms) +"aDj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side, +/area/crew_quarters/dorms) +"aDk" = ( +/obj/machinery/vr_sleeper{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/crew_quarters/dorms) +"aDl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aDm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aDo" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDq" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDr" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aDu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aDw" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Tool Storage APC"; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/storage/primary) +"aDx" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aDy" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/storage/primary) +"aDz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/storage/primary) +"aDA" = ( +/turf/open/floor/plasteel, +/area/storage/primary) +"aDB" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aDC" = ( +/obj/structure/table/wood, +/obj/item/storage/lockbox/medal, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aDE" = ( +/obj/structure/chair/comfy/brown, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aDF" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aDG" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aDH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aDI" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aDJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aDK" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aDL" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aDM" = ( +/obj/machinery/holopad, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Center"; + dir = 1; + network = list("aiupload") + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -28 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aDN" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/structure/sign/plaques/kiddie{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aDO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aDP" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aDQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"aDR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 15 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aDS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aDT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aDU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aDV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aDW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aDX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aDY" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Head of Personnel APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aDZ" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEb" = ( +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aEd" = ( +/turf/closed/wall, +/area/crew_quarters/toilet/restrooms) +"aEe" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aEf" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aEg" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aEh" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aEi" = ( +/obj/effect/landmark/blobstart, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"aEj" = ( +/turf/closed/wall, +/area/maintenance/department/cargo) +"aEk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aEl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aEm" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEn" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEo" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes, +/obj/item/lighter, +/obj/item/clothing/glasses/hud/security/sunglasses, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEp" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEq" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aEr" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Detective's Office APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aEs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aEt" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -2 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/storage/primary) +"aEu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/storage/primary) +"aEv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/storage/primary) +"aEw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aEx" = ( +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aEy" = ( +/obj/structure/table/wood, +/obj/item/hand_tele, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aEz" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aEA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aEB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aEC" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Bridge Port Entrance"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aED" = ( +/obj/structure/table, +/obj/item/aiModule/core/full/asimov, +/obj/effect/spawner/lootdrop/aimodule_harmless, +/obj/item/aiModule/core/freeformcore, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/effect/spawner/lootdrop/aimodule_neutral, +/obj/item/aiModule/core/full/custom, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aEE" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aEF" = ( +/obj/machinery/computer/upload/ai{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aEG" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"aEH" = ( +/obj/machinery/computer/upload/borg{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aEI" = ( +/obj/structure/table, +/obj/item/aiModule/supplied/oxygen, +/obj/item/aiModule/zeroth/oneHuman, +/obj/machinery/door/window{ + dir = 8; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/aiModule/reset/purge, +/obj/effect/spawner/lootdrop/aimodule_harmful, +/obj/item/aiModule/supplied/protectStation, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aEJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Bridge Starboard Entrance"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aEK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aEL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aEM" = ( +/obj/item/kirbyplants{ + icon_state = "plant-24" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aEN" = ( +/obj/structure/table/wood, +/obj/item/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/silver_ids, +/obj/item/storage/box/ids, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"aEO" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aEP" = ( +/obj/machinery/computer/card{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aEQ" = ( +/obj/structure/chair/office/dark, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 38; + pixel_y = -25 + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 25; + pixel_y = -26; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = 25; + pixel_y = -36; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = 38; + pixel_y = -35 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aER" = ( +/obj/structure/table/wood, +/obj/item/stamp/hop{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/hop) +"aES" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Vault"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aET" = ( +/turf/closed/wall, +/area/storage/emergency/starboard) +"aEU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/item/storage/toolbox, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aEW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aEZ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFb" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFc" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFe" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFf" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFg" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFi" = ( +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFj" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Entrance"; + network = list("minisat") + }, +/turf/open/space, +/area/space/nearstation) +"aFk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/spawner/lootdrop/minor/bowler_or_that, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"aFm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFn" = ( +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFo" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/effect/landmark/start/detective, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFr" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway Entrance"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aFs" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/electronics/apc, +/obj/item/t_scanner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/storage/primary) +"aFt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aFu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"aFv" = ( +/obj/structure/table, +/obj/item/weldingtool, +/obj/item/crowbar, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aFw" = ( +/obj/structure/table/wood, +/obj/item/camera, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aFx" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/crew_quarters/heads/captain) +"aFy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aFz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aFA" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"aFB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 1; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Reception Window" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hop"; + name = "privacy shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"aFC" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aFD" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/taperecorder, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aFE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aFF" = ( +/obj/item/storage/box/lights/mixed, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Starboard Emergency Storage APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aFG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFH" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFK" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFM" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aFN" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFO" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFP" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFQ" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/food/condiment/rice, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aFU" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"aFV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Detective Maintenance"; + req_access_txt = "4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aFW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aFX" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aFY" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"aGa" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aGb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aGe" = ( +/obj/structure/rack, +/obj/item/wirecutters, +/obj/item/flashlight, +/obj/item/gps, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGf" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGg" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/assembly/timer, +/obj/item/radio, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGh" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGi" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGj" = ( +/obj/structure/disposalpipe/junction/flip, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGk" = ( +/obj/machinery/vending/boozeomat/pubby_captain, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aGl" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aGm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/arcade{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"aGn" = ( +/obj/item/kirbyplants/photosynthetic{ + layer = 3.1 + }, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aGo" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGp" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign2"; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGq" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign3"; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGr" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign4"; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGs" = ( +/obj/structure/lattice, +/obj/structure/sign/logo{ + icon_state = "nanotrasen_sign5"; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"aGt" = ( +/obj/machinery/vending/cola, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGu" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGw" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGx" = ( +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 28; + pixel_y = -28 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGy" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGz" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aGB" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aGC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGF" = ( +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGH" = ( +/obj/machinery/camera{ + c_tag = "Dormitory Toilets"; + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGI" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/sign/poster/official/no_erp{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGJ" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aGK" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/cookie{ + desc = "It has a distinctly eldritch taste to it."; + name = "grandma's cookie" + }, +/obj/item/cigbutt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGL" = ( +/obj/structure/chair/stool, +/obj/item/clothing/suit/apron/chef, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGM" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGN" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGO" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGP" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aGU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGV" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGX" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "assistantshutters"; + name = "storage shutters" + }, +/turf/open/floor/plating, +/area/storage/primary) +"aGY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "assistantshutters"; + name = "storage shutters" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"aGZ" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "assistantshutters"; + name = "storage shutters" + }, +/turf/open/floor/plating, +/area/storage/primary) +"aHb" = ( +/obj/machinery/computer/arcade, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aHc" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aHd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHe" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aHg" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHh" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aHj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aHk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aHl" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHn" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Starboard Emergency Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"aHo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aHp" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aHq" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aHr" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aHs" = ( +/obj/structure/closet/crate, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/replicapod, +/obj/item/seeds/carrot, +/obj/item/seeds/tomato, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aHt" = ( +/obj/effect/decal/cleanable/egg_smudge, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aHu" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aHz" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"aHA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"aHC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aHE" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorms"; + location = "Tool" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHR" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHU" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIb" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aId" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIe" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"aIi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIj" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/sign/departments/restroom{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/central) +"aIk" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Dormitory Bathrooms APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aIl" = ( +/obj/structure/toilet/secret/low_loot{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aIp" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aIq" = ( +/obj/structure/closet/crate/coffin, +/obj/item/toy/figure/lawyer, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aIr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space, +/area/solar/port) +"aIC" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aIH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aIL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorms"; + location = "Tool" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIN" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIT" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIX" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/observer_start, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIY" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aIZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJa" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Robo"; + location = "HoP" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJi" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HoP"; + location = "Dorms" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/central) +"aJn" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aJo" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/table, +/obj/structure/bedsheetbin/towel, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aJp" = ( +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aJq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"aJr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/cargo) +"aJs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aJt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"aJv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aJw" = ( +/obj/structure/closet/crate/coffin, +/obj/item/toy/figure/chaplain, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aJD" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge Fore" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aJE" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aJF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/secondary/exit/departure_lounge"; + dir = 1; + name = "Departure Lounge APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aJG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = -24 + }, +/obj/structure/sign/directions/medical{ + pixel_x = 32; + pixel_y = -40 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJH" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJM" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Bathroom"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/restroom{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJT" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJV" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJW" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway EVA"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJX" = ( +/obj/structure/sign/directions/security{ + dir = 8; + pixel_x = -32; + pixel_y = -24 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/sign/directions/science{ + pixel_x = -32; + pixel_y = -40 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKe" = ( +/obj/machinery/camera{ + c_tag = "Dormitories Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKg" = ( +/obj/item/kirbyplants{ + icon_state = "plant-04" + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"aKh" = ( +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aKi" = ( +/obj/machinery/door/airlock{ + name = "Unit B" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aKj" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Dormitory Cyborg Recharging Station" + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"aKk" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKo" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"aKp" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKq" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKr" = ( +/obj/structure/closet/crate/coffin, +/obj/item/toy/figure/curator, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aKy" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"aKz" = ( +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"aKA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aKB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"aKD" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aKE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aKG" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aKH" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aKI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aKJ" = ( +/turf/closed/wall, +/area/storage/art) +"aKK" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/storage/art) +"aKL" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Art Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/storage/art) +"aKM" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/cafeteria/lunchroom) +"aKN" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/cafeteria/lunchroom) +"aKO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Lunchroom" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/cafeteria/lunchroom) +"aKP" = ( +/turf/closed/wall, +/area/crew_quarters/cafeteria/lunchroom) +"aKQ" = ( +/turf/closed/wall, +/area/crew_quarters/toilet/auxiliary) +"aKR" = ( +/obj/machinery/door/airlock{ + id_tag = "Potty1"; + name = "Unisex Restrooms" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aKS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/crew_quarters/toilet/auxiliary) +"aKT" = ( +/turf/closed/wall, +/area/maintenance/department/crew_quarters/bar) +"aKU" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aKV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aKY" = ( +/turf/closed/wall/r_wall, +/area/storage/eva) +"aKZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/eva) +"aLa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "EVA Storage Shutters" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/teleporter) +"aLd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/command/glass{ + name = "Teleporter"; + req_access_txt = "17" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aLe" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"aLf" = ( +/turf/closed/wall, +/area/quartermaster/office) +"aLg" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"aLh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLj" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLl" = ( +/obj/item/storage/box/mousetraps, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aLm" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"aLn" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aLo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aLu" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aLv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aLw" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/art) +"aLx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/easel, +/obj/item/canvas/twentythreeXnineteen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aLy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aLz" = ( +/obj/machinery/photocopier, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aLA" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/friedegg, +/obj/item/kitchen/fork, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aLB" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aLC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aLD" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/vending/cola, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aLE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aLF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aLG" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/button/door{ + id = "Potty1"; + name = "Bathroom Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 4; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 36; + pixel_y = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aLH" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aLI" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aLK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aLL" = ( +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aLQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/button/door{ + id = "evashutter"; + name = "EVA Shutters Control"; + pixel_x = -24; + req_access_txt = "18" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aLR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aLU" = ( +/obj/structure/closet/crate/rcd, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aLV" = ( +/turf/closed/wall, +/area/storage/eva) +"aLW" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Teleporter APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aLX" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aLY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aLZ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aMa" = ( +/obj/structure/closet/crate, +/obj/machinery/button/door{ + id = "teleshutter"; + name = "Teleporter Shutters Control"; + pixel_x = 25; + pixel_y = -5; + req_access_txt = "17" + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/teleporter) +"aMb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMd" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -32 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aMe" = ( +/obj/machinery/computer/security/mining, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo Security Post" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aMf" = ( +/obj/machinery/computer/secure_data, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aMg" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMh" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMi" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMk" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMl" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMm" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMn" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aMo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/quartermaster/warehouse) +"aMp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMr" = ( +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMt" = ( +/obj/structure/closet/cardboard, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo Warehouse" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMu" = ( +/obj/item/cigbutt/cigarbutt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/warehouse"; + dir = 4; + name = "Cargo Warehouse APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aMw" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMx" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMy" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMz" = ( +/obj/structure/grille/broken, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/crowbar, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMA" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMB" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aMD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aME" = ( +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aMF" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "garbagestacked"; + name = "disposal conveyor" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aMG" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aMH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aML" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aMR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/storage/art) +"aMV" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/storage/toolbox/artistic{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/artistic{ + pixel_x = -3 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aMW" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aMX" = ( +/obj/structure/table, +/obj/item/airlock_painter, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Art Storage APC"; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aMY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aMZ" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Lunchroom"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aNa" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "Cafeteria APC"; + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aNb" = ( +/obj/machinery/vending/sustenance{ + contraband = list(/obj/item/kitchen/knife = 6, /obj/item/reagent_containers/food/drinks/coffee = 12); + desc = "A vending machine which vends food."; + product_ads = "Sufficiently healthy." + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/cafeteria/lunchroom) +"aNc" = ( +/obj/structure/toilet/secret/low_loot{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aNd" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aNe" = ( +/obj/structure/cable, +/obj/machinery/power/apc/highcap/five_k{ + name = "Auxiliary Restrooms APC"; + pixel_y = -24 + }, +/obj/item/soap/nanotrasen, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/auxiliary) +"aNf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aNg" = ( +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aNh" = ( +/obj/item/extinguisher, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aNi" = ( +/obj/structure/grille/broken, +/obj/item/crowbar, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aNj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aNm" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aNp" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aNq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/storage/eva) +"aNr" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aNs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/storage/eva) +"aNt" = ( +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide/eva, +/obj/item/tank/jetpack/carbondioxide/eva{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aNu" = ( +/obj/structure/closet/crate, +/obj/item/melee/flyswatter, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/teleporter) +"aNv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aNw" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/teleporter) +"aNx" = ( +/turf/open/floor/plasteel, +/area/teleporter) +"aNy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/teleporter) +"aNz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "teleshutter"; + name = "Teleporter Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/teleporter) +"aNA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aNB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aNC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aND" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aNE" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aNF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aNH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNJ" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNK" = ( +/obj/structure/table, +/obj/item/destTagger, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNL" = ( +/obj/item/stack/wrapping_paper{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/stack/packageWrap{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNM" = ( +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/hand_labeler, +/obj/item/hand_labeler, +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aNN" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aNO" = ( +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aNP" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aNQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aNR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aNT" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "trash" + }, +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -28 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aNU" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 8; + output_dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aNV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbagestacked" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aNX" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aNY" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aOf" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"aOg" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"aOh" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"aOk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aOm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/wrench, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aOs" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"aOt" = ( +/obj/structure/table, +/obj/item/instrument/glockenspiel{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aOu" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Art Storage"; + dir = 1 + }, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aOv" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 20; + layer = 3.1 + }, +/obj/item/stack/sheet/glass{ + amount = 20; + layer = 3.2 + }, +/obj/item/stack/rods{ + amount = 20; + layer = 3.3 + }, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/canvas/nineteenXnineteen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/art) +"aOw" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aOx" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aOy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aOz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aOA" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aOB" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "EVA Storage"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aOC" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel, +/area/storage/eva) +"aOD" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aOE" = ( +/obj/structure/table, +/obj/item/hand_tele, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Teleporter"; + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aOF" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/teleporter) +"aOG" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/teleporter) +"aOH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/teleporter) +"aOI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/teleporter) +"aOJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "teleshutter"; + name = "Teleporter Shutters" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/teleporter) +"aOK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aOL" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aOM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aON" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aOO" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aOP" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aOQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aOR" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aOS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aOT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aOU" = ( +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aOV" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aOW" = ( +/obj/machinery/door/window/eastleft{ + dir = 8; + icon_state = "right"; + name = "Mail"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aOX" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aOY" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aOZ" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aPa" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aPb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aPc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aPd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aPf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aPg" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aPi" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aPn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aPo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/exit/departure_lounge) +"aPq" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge Starboard"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aPt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"aPv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aPw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aPx" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPy" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aPz" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aPA" = ( +/obj/item/trash/cheesie, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPB" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPC" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/spawner/lootdrop/gloves, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPD" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Bar Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPE" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"aPF" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aPH" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aPI" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aPJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aPK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aPL" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aPM" = ( +/obj/structure/table, +/obj/item/beacon, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPN" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPO" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPP" = ( +/obj/machinery/teleport/hub, +/obj/machinery/light, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPQ" = ( +/obj/structure/closet/crate, +/obj/item/crowbar, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aPR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aPS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aPT" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "Security Post - Cargo APC"; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/security/cargo, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aPU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aPV" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aPW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/office) +"aPX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aPY" = ( +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aPZ" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aQa" = ( +/obj/structure/disposalpipe/sorting/wrap{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Cargo Mailroom"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aQc" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQd" = ( +/obj/item/flashlight, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQe" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQf" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQg" = ( +/obj/structure/closet/crate/medical, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aQj" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aQk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"aQn" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "garbage"; + name = "disposal conveyor" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aQo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aQp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aQr" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aQs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aQt" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"aQu" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aQv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aQw" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aQx" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aQz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aQB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aQC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aQD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aQE" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQF" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aQI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aQJ" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"aQK" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQL" = ( +/obj/structure/grille/broken, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQM" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aQR" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQS" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aQT" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/crew_quarters/bar) +"aQU" = ( +/obj/machinery/vending/coffee, +/obj/machinery/camera{ + c_tag = "Bar Backroom" + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aQV" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/obj/item/stack/cable_coil, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aQW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/broken_bottle, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aQY" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aQZ" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/crowbar, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "EVA Storage APC"; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aRa" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/storage/eva) +"aRb" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/storage/eva) +"aRc" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/eva) +"aRd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aRe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/departments/cargo{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aRf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aRg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aRh" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRi" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRj" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/power/apc/highcap/fifteen_k{ + dir = 4; + name = "Delivery Office APC"; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aRm" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/food/snacks/donut, +/obj/item/reagent_containers/food/snacks/donut, +/obj/item/reagent_containers/food/snacks/donut, +/obj/item/reagent_containers/food/snacks/donut, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aRn" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aRo" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aRp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "qm_warehouse"; + name = "warehouse shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aRq" = ( +/obj/structure/closet/crate/internals, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"aRs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aRt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"aRu" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRv" = ( +/obj/item/trash/can, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aRB" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aRC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aRD" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aRE" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aRF" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aRG" = ( +/obj/structure/rack, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/assault_pod/mining, +/obj/machinery/camera{ + c_tag = "Auxillary Base Construction"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/auxbase{ + dir = 8; + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aRH" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/hallway/primary/central) +"aRI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aRJ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRK" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRL" = ( +/turf/closed/wall, +/area/hydroponics) +"aRM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRN" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aRO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aRP" = ( +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"aRQ" = ( +/obj/item/gun/ballistic/revolver/doublebarrel{ + pixel_y = 11 + }, +/obj/structure/table/wood, +/obj/item/coin/silver, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c100, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aRR" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/item/clothing/under/rank/civilian/janitor/maid, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/crew_quarters/bar) +"aRS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aRT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aRU" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Storage Maintenance"; + req_access_txt = "25" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "EVA Maintenance"; + req_access_txt = "18" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRY" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aRZ" = ( +/obj/item/trash/tray, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSa" = ( +/obj/structure/closet/secure_closet/freezer/cream_pie, +/obj/item/grown/bananapeel, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSb" = ( +/obj/structure/closet/secure_closet/freezer/cream_pie, +/obj/item/seeds/banana, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSc" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aSd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aSe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aSf" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aSg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_one_access_txt = "48;50" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"aSh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"aSi" = ( +/obj/machinery/button/door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aSj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aSk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aSl" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Cargo Maintenance APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aSm" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aSn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aSo" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Disposal APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aSu" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/wirecutters, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"aSv" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aSw" = ( +/obj/item/statuebust, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aSx" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aSz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSA" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSE" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage" + }, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSF" = ( +/obj/machinery/chem_master/condimaster, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSG" = ( +/obj/structure/table, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/reagent_containers/glass/bottle/mutagen, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel, +/area/hydroponics) +"aSH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aSI" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo"; + pixel_x = -4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aSJ" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aSK" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aSL" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Kitchen" + }, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"aSM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/bar) +"aSN" = ( +/obj/item/assembly/mousetrap, +/obj/item/storage/box/mousetraps, +/turf/open/floor/wood{ + icon_state = "wood-broken6" + }, +/area/crew_quarters/bar) +"aSO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aSP" = ( +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aSQ" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/storage/box/beanbag, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aSR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/item/weldingtool, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSS" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aST" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSW" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aSX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aSY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aSZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTa" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"aTf" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aTi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTm" = ( +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aTn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTp" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTq" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTr" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTs" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aTu" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aTv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aTw" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aTx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aTy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aTz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aTA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aTB" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aTC" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard) +"aTD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/space, +/area/solar/starboard) +"aTE" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "starboardsolar"; + name = "Starboard Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard) +"aTH" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 4; + height = 15; + id = "emergency_home"; + name = "PubbyStation emergency evac bay"; + width = 20 + }, +/turf/open/space/basic, +/area/space) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aTK" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aTL" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aTM" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aTO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Escape"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aTP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aTQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTW" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/watertank, +/turf/open/floor/plasteel, +/area/hydroponics) +"aTX" = ( +/obj/structure/kitchenspike, +/obj/item/assembly/mousetrap, +/obj/item/reagent_containers/food/snacks/deadmouse, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aTY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aTZ" = ( +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aUa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/item/crowbar, +/obj/item/wrench, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aUb" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/bar) +"aUc" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aUd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/wood, +/area/crew_quarters/bar) +"aUe" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/crew_quarters/bar) +"aUf" = ( +/turf/closed/wall, +/area/crew_quarters/theatre) +"aUg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bar Maintenance"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aUi" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Cargo"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUj" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUl" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUm" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUo" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUq" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aUt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUv" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUw" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aUy" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aUz" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aUA" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"aUB" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aUC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aUD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard) +"aUG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aUH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aUI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"aUJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"aUK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aUO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aUP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aUQ" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"aUR" = ( +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 1; + freq = 1400; + location = "Hydroponics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUS" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/wirecutters, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUT" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUU" = ( +/obj/machinery/power/apc{ + name = "Hydroponics APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUW" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel, +/area/hydroponics) +"aUX" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aUY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aUZ" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVa" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVc" = ( +/obj/machinery/door/window/southleft{ + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aVd" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/newscaster{ + pixel_x = -32; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVg" = ( +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVh" = ( +/obj/structure/table/glass, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/bottle/patron{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/grappa{ + pixel_x = 10; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVi" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/bottle/hcider{ + layer = 3.1; + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + layer = 3.1; + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + layer = 3.2; + pixel_x = -15; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ + layer = 3.1; + pixel_x = 13; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/tequila{ + layer = 3.2; + pixel_x = 13; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 1; + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/bottle/gin{ + pixel_x = -10; + pixel_y = 15 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/button/door{ + id = "barshutters"; + name = "Bar Lockdown"; + pixel_x = 28; + req_access_txt = "25" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aVk" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/instrument/accordion{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aVl" = ( +/obj/structure/dresser, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aVm" = ( +/obj/machinery/vending/autodrobe, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aVn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Theatre Maintenance"; + req_access_txt = "46" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aVo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aVp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVq" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVs" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/conveyor{ + dir = 4; + id = "cargodeliver" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/conveyor_switch{ + id = "cargodeliver" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aVw" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "QM #1" + }, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVy" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVz" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVB" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad" + }, +/obj/machinery/camera{ + c_tag = "Cargo Supply Dock"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aVE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 8; + light_color = "#d8b1b1" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aVG" = ( +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aVH" = ( +/obj/structure/closet/l3closet/scientist, +/obj/item/book/manual/wiki/chemistry, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aVI" = ( +/obj/structure/closet, +/obj/item/canvas/twentythreeXnineteen, +/obj/item/canvas/nineteenXnineteen, +/obj/item/canvas/twentythreeXtwentythree, +/obj/item/storage/crayons, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aVM" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aVN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aVO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aVP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aVQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aVR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aVS" = ( +/turf/closed/wall, +/area/janitor) +"aVT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/janitor) +"aVU" = ( +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Janitor Delivery"; + req_access_txt = "26" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Janitor" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aVV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"aVW" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVX" = ( +/obj/machinery/power/apc{ + name = "Kitchen APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aVZ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/item/reagent_containers/food/snacks/grown/potato, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aWa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"aWb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWd" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey/punpun, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWe" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/camera{ + c_tag = "Bar Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWm" = ( +/obj/structure/disposalpipe/segment, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWn" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Theatre APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWq" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWr" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/light_switch{ + pixel_x = 24; + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_x = 28; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aWs" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aWt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aWu" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aWv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/mineral/ore_redemption{ + input_dir = 4; + output_dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"aWw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aWx" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "QM #2" + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay"; + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aWy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aWz" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aWA" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aWB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aWE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aWF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aWI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera{ + c_tag = "Departure Lounge Hallway"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aWJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aWK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"aWM" = ( +/obj/machinery/washing_machine, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aWN" = ( +/obj/machinery/camera{ + c_tag = "Custodial Quarters" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aWO" = ( +/obj/structure/bed, +/obj/effect/landmark/start/janitor, +/obj/item/bedsheet/purple, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aWP" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aWQ" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aWR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aWS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/sorting/mail{ + sortType = 21 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aWT" = ( +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 30 + }, +/obj/structure/sink/kitchen{ + name = "utility sink"; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aWU" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aWV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aWW" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aWX" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aWY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Bar APC"; + pixel_x = 27 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXh" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aXk" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Theatre Storage"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXm" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 18 + }, +/obj/machinery/requests_console{ + department = "Theatre"; + name = "theatre RC"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/clown, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXo" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/cardboard_cutout, +/obj/structure/mirror{ + pixel_x = 28; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/theatre) +"aXp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/theatre) +"aXq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXr" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/cargo{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXs" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aXt" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aXu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/dark, +/area/quartermaster/office) +"aXv" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Cargo Foyer"; + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aXw" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "QM #3" + }, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aXx" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aXy" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aXz" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aXA" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"aXB" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/security/checkpoint/customs) +"aXC" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aXF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aXG" = ( +/obj/structure/table, +/obj/effect/holodeck_effect/cards{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"aXH" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/customs) +"aXI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "papersplease"; + name = "security shutters" + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"aXJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + dir = 2; + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/machinery/door/poddoor/preopen{ + id = "papersplease"; + name = "privacy shutters" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aXK" = ( +/turf/closed/wall, +/area/security/checkpoint/customs) +"aXL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/janitor) +"aXN" = ( +/obj/structure/bedsheetbin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aXO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aXP" = ( +/obj/structure/table, +/obj/item/clothing/under/costume/maid, +/obj/item/key/janitor, +/obj/item/grenade/clusterbuster/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aXQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXR" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXS" = ( +/turf/open/floor/plasteel, +/area/hydroponics) +"aXT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hydroponics) +"aXU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXW" = ( +/obj/machinery/plantgenes{ + pixel_y = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXX" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXY" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/departments/botany{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aXZ" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYa" = ( +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/crew_quarters/kitchen) +"aYb" = ( +/obj/machinery/door/airlock{ + name = "Bar Access"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"aYd" = ( +/obj/machinery/door/airlock{ + name = "Service Access"; + req_one_access_txt = "25; 26; 28; 35" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYe" = ( +/obj/structure/table/reinforced, +/obj/item/kirbyplants{ + icon_state = "plant-18"; + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYf" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/reagent_containers/rag, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYg" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYh" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/instrument/guitar, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYi" = ( +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants{ + icon_state = "plant-18"; + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYj" = ( +/obj/machinery/door/airlock{ + name = "Theatre Storage"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aYk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aYl" = ( +/obj/structure/table/wood, +/obj/item/soap, +/obj/structure/table/wood, +/obj/item/bikehorn, +/obj/item/toy/cattoy, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aYm" = ( +/obj/structure/closet/crate/wooden/toy, +/obj/item/lipstick/random, +/obj/item/clothing/gloves/color/rainbow, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/theatre) +"aYn" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -32 + }, +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYo" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYp" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYq" = ( +/obj/item/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYs" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aYv" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "QM #4" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYB" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aYC" = ( +/obj/structure/grille/broken, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aYD" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/storage/box/matches, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aYE" = ( +/obj/structure/table, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aYF" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal{ + amount = 10 + }, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/light/bulb, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aYG" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"aYH" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aYI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aYJ" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aYK" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aYL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Quarters"; + req_access_txt = "26" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/janitor) +"aYN" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aYR" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYS" = ( +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYT" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYU" = ( +/obj/machinery/processor, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aYX" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenshutters"; + name = "kitchen shutters" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"aYY" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZg" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aZh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZj" = ( +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/machinery/computer/bounty{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZk" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"aZo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZq" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 3 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZs" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"aZv" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aZw" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"aZx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aZy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZD" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aZF" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security Checkpoint"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZJ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZK" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aZL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/janitor) +"aZP" = ( +/turf/open/floor/plasteel, +/area/janitor) +"aZQ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/power/apc{ + dir = 1; + name = "Custodial Closet APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/janitor) +"aZR" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hydroponics) +"aZT" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZU" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"aZV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aZZ" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"baa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bab" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bac" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bad" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenshutters"; + name = "kitchen shutters" + }, +/obj/item/storage/fancy/donut_box, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bae" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bag" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bah" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"ban" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/newscaster{ + pixel_x = 32; + pixel_y = 1 + }, +/obj/structure/chair/wood/normal, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bao" = ( +/obj/machinery/computer/slot_machine, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bap" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"baq" = ( +/obj/machinery/computer/arcade, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bar" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bas" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bat" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bau" = ( +/obj/machinery/photocopier, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bav" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/office"; + name = "Cargo Office APC"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"baw" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bax" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"baz" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"baA" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "Cargo Bay APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baE" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"baG" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard) +"baH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Bridge External Access"; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"baI" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard) +"baJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baK" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baL" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"baQ" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "papersplease"; + name = "Shutters Control Button"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "1" + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = -26; + pixel_y = -4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"baR" = ( +/obj/item/pen, +/obj/structure/table, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"baS" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"baT" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"baU" = ( +/obj/machinery/power/apc{ + name = "Security Checkpoint APC"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"baV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baW" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "jangarage"; + name = "Custodial Closet Shutters Control"; + pixel_x = 25; + req_access_txt = "26" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baX" = ( +/obj/vehicle/ridden/janicart, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "jangarage"; + name = "Custodial Closet Shutters Control"; + pixel_x = -25; + req_access_txt = "26" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/janitor) +"baY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/janitor) +"baZ" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_x = 32 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bba" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hydroponics) +"bbb" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bbc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bbd" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hydroponics) +"bbg" = ( +/obj/effect/landmark/start/cook, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bbh" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bbi" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bbl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenshutters"; + name = "kitchen shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"bbm" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbo" = ( +/obj/item/clothing/head/hardhat/cakehat, +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbp" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbr" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbs" = ( +/obj/item/cane, +/obj/item/clothing/head/that, +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/wood, +/obj/item/clothing/under/dress/sundress, +/obj/item/clothing/under/suit/waiter, +/obj/item/clothing/under/dress/blacktango, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bbu" = ( +/obj/structure/grille, +/obj/structure/window/fulltile, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"bbv" = ( +/obj/structure/chair/stool, +/obj/item/trash/can, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbw" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/stool, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bbx" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bby" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Office Maintenance"; + req_access_txt = "50" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/office) +"bbB" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/clothing/under/misc/mailman, +/obj/item/clothing/head/mailman, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbC" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/hand_labeler, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbD" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbE" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"bbF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bbG" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bbH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bbI" = ( +/turf/closed/wall, +/area/quartermaster/miningdock) +"bbJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bbK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bbL" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bbM" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/multitool, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bbP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solar/starboard) +"bbQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bbR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbV" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "papersplease"; + name = "privacy shutters" + }, +/obj/item/crowbar, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bbW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "jangarage"; + name = "Custodial Closet Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/janitor) +"bbX" = ( +/obj/structure/janitorialcart, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bbY" = ( +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 8 + }, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel, +/area/janitor) +"bbZ" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bca" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics South"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bcb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bcc" = ( +/obj/machinery/biogenerator, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bcd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/reagent_containers/food/snacks/cube/monkey, +/turf/open/floor/plasteel/dark, +/area/hydroponics) +"bce" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bcf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bcg" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bch" = ( +/obj/structure/table, +/obj/item/storage/box/ingredients/wildcard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bck" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcm" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bco" = ( +/obj/structure/table/wood/fancy, +/obj/item/gun/ballistic/revolver/russian{ + pixel_y = 16 + }, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bcq" = ( +/obj/item/clothing/glasses/monocle, +/obj/item/instrument/recorder, +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"bcr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcs" = ( +/obj/item/clothing/shoes/sandal, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bct" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bcx" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"bcy" = ( +/obj/item/chair, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/cargo) +"bcz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bcA" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/storage/belt/fannypack/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bcB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bcC" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bcD" = ( +/obj/structure/closet/wardrobe/miner, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bcE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bcG" = ( +/obj/structure/closet/emcloset, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bcH" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bcI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bcJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bcK" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bcL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bcN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/bridge) +"bcO" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"bcQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space, +/area/solar/starboard) +"bcR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space, +/area/solar/starboard) +"bcS" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solar/starboard) +"bcT" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space, +/area/solar/starboard) +"bcU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/space, +/area/solar/starboard) +"bcV" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard) +"bcX" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bcY" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bcZ" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bda" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"bdd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bde" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = -28; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/janitor) +"bdh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bdi" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = 22 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bdj" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdk" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bdm" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hydroponics) +"bdn" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdp" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bdq" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bdr" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bdv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bdw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bdx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bdy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bdz" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/cargo) +"bdB" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bdC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bdD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bdE" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bdF" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/qm"; + dir = 8; + name = "Quartermaster APC"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bdG" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bdH" = ( +/obj/machinery/computer/bounty{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bdI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bdJ" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bdK" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/shaft_miner, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bdL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bdM" = ( +/obj/machinery/requests_console{ + department = "Mining"; + pixel_x = 32 + }, +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bdQ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/cargo) +"bdR" = ( +/obj/structure/chair/stool, +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bdS" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "starboardsolar"; + name = "Starboard Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"bdU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space, +/area/solar/starboard) +"bdV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bdW" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bdZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bea" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"beb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/departments/custodian{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bec" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"bed" = ( +/obj/structure/table, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/janitor) +"bee" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/mousetraps, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/item/clothing/head/crown, +/turf/open/floor/plasteel, +/area/janitor) +"bef" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"beg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"beh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bei" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"bej" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bek" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bel" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bem" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ben" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"beo" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenwindowshutters"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"bep" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"beq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ber" = ( +/obj/effect/landmark/start/cook, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bes" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"beu" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bex" = ( +/obj/machinery/camera{ + c_tag = "Bar Port"; + dir = 1 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bey" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bez" = ( +/obj/structure/table/wood, +/obj/item/instrument/trombone, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beA" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/obj/machinery/button/door{ + id = "barshutters"; + name = "Bar Lockdown"; + pixel_y = -28; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beC" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/obj/machinery/button/door{ + id = "barshutters"; + name = "Bar Lockdown"; + pixel_y = -28; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beD" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chocolatebar, +/obj/item/kitchen/fork, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beE" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beF" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Bar Starboard"; + dir = 1 + }, +/obj/machinery/light{ + light_color = "#c9d3e8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"beI" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"beJ" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/keycard_auth{ + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"beK" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"beL" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"beM" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"beN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/shaft_miner, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"beO" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"beP" = ( +/obj/machinery/computer/shuttle/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"beR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"beS" = ( +/obj/item/caution, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"beU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space, +/area/solar/starboard) +"beY" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Central"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"beZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bfb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -29 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfc" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bff" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"bfj" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfk" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfl" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfm" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfn" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hydroponics) +"bfo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfp" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/button/door{ + id = "kitchenwindowshutters"; + name = "Kitchen Window Shutters Control"; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bfr" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/crew_quarters/bar) +"bfs" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bft" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bfu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bfv" = ( +/obj/structure/table, +/obj/item/crowbar/large, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/power/apc{ + dir = 1; + name = "Mech Bay APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfx" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfy" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/status_display/evac{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfz" = ( +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfA" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bfB" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/computer/card/minor/qm{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bfC" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Cargo Quartermaster's Office"; + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/item/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/cartridge/quartermaster, +/obj/item/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/coin/silver, +/obj/item/stamp/qm, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bfD" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -35 + }, +/obj/machinery/computer/security/qm{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bfE" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/machinery/camera{ + c_tag = "Cargo Mining Dock"; + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bfF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/shaft_miner, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bfG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bfH" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bfI" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bfJ" = ( +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"bfK" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/delta; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"bfM" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bfN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paperplane, +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bfP" = ( +/obj/machinery/shieldwallgen, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bfY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bfZ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/lounge) +"bga" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/lounge) +"bgb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Lounge" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"bgc" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/lounge) +"bgd" = ( +/turf/closed/wall, +/area/crew_quarters/lounge) +"bge" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 40 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgh" = ( +/obj/structure/chair{ + name = "Throne of Custodia" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgi" = ( +/obj/machinery/vending/cola, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgj" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/hydroponics) +"bgk" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenwindowshutters"; + name = "kitchen shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"bgl" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenwindowshutters"; + name = "kitchen shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"bgn" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgo" = ( +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/storage/fancy/rollingpapers, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgp" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgr" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgs" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/donut, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bgu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bgv" = ( +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgw" = ( +/obj/structure/chair, +/obj/item/clothing/head/bowler, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgx" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/structure/chair, +/obj/item/clothing/mask/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgz" = ( +/obj/structure/sign/poster/official/cohiba_robusto_ad{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32; + pixel_y = 40 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgB" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgC" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bgE" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/robot_debris{ + icon_state = "gib3" + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bgF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bgG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bgH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bgI" = ( +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bgJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bgK" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Mining Dock APC"; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bgL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bgM" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bgS" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 13; + id = "arrivals_stationary"; + name = "pubby arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/pubby; + width = 6 + }, +/turf/open/space/basic, +/area/space) +"bgU" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgV" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgY" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "loungeshutters"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bgZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bha" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhc" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhd" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhe" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 28 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32; + pixel_y = 38 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Bar1"; + location = "Robo" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhl" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhn" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"bho" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"bhp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhr" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access_txt = "48" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bht" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bhu" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/light, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bhv" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock) +"bhz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bhE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bhF" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bhG" = ( +/turf/open/floor/carpet, +/area/crew_quarters/lounge) +"bhH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/crew_quarters/lounge) +"bhI" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Lounge"; + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bhJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhL" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=BrigS1"; + location = "Lounge" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lounge"; + location = "Kitchen" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhP" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 25; + req_access_txt = "29" + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = -25; + req_access_txt = "29" + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bhU" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bhV" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bib" = ( +/obj/structure/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bic" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/carpet, +/area/crew_quarters/lounge) +"bid" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet, +/area/crew_quarters/lounge) +"bie" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"bif" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"big" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bih" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bii" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bij" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bik" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bil" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bim" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bin" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Hydroponics"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bio" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bip" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biq" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bir" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Robotics"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bis" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bit" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"biu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"biv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"biw" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bix" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/robot_debris{ + icon_state = "gib3" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biD" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"biF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"biI" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"biJ" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "loungeshutters"; + name = "privacy shutters" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/lounge) +"biK" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"biL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"biM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"biN" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/lounge"; + name = "Lounge APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/lounge) +"biO" = ( +/obj/structure/table/glass, +/obj/item/healthanalyzer{ + layer = 3.1 + }, +/obj/item/pen{ + layer = 3.2 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/departments/examroom{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biR" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Genetics"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biS" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biT" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Port Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/storage/emergency/port) +"biX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/storage/emergency/port) +"biY" = ( +/turf/closed/wall, +/area/medical/morgue) +"biZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bja" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"bjb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/security/checkpoint/medical) +"bjc" = ( +/turf/closed/wall, +/area/medical/medbay/central) +"bjd" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bje" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/medbay/central) +"bjf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bjg" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bjh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bji" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjj" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjk" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Bar"; + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjl" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjm" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjn" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bjr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bju" = ( +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bjv" = ( +/obj/structure/closet, +/obj/item/weldingtool, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjw" = ( +/turf/closed/wall/r_wall, +/area/science/explab) +"bjx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjB" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"bjD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bjI" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/crew_quarters/lounge) +"bjJ" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/crew_quarters/lounge) +"bjK" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/crew_quarters/lounge) +"bjL" = ( +/turf/closed/wall, +/area/storage/emergency/port) +"bjN" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bjP" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bjQ" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bjR" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bjS" = ( +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjW" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/power/apc{ + dir = 1; + name = "Morgue APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bjX" = ( +/obj/structure/filingcabinet, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bjY" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bjZ" = ( +/obj/machinery/computer/secure_data, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bka" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bkb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bkc" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkd" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bke" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkh" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bki" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bkm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bkn" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci3"; + location = "Sci2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bko" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bkp" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bkq" = ( +/obj/structure/table, +/obj/item/gps{ + gpstag = "RD0" + }, +/obj/item/assembly/igniter{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/head/welding, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bkr" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bks" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/stack/cable_coil, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bkt" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"bku" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/lab) +"bkv" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"bkw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bkx" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"bky" = ( +/turf/open/floor/engine, +/area/science/explab) +"bkz" = ( +/obj/machinery/camera{ + c_tag = "Experimentation Lab Chamber"; + network = list("ss13","rd") + }, +/turf/open/floor/engine, +/area/science/explab) +"bkA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"bkB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"bkD" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/explab) +"bkF" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"bkH" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bkP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space, +/area/solar/starboard) +"bkQ" = ( +/obj/machinery/vending/snack, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkR" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkS" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bkW" = ( +/obj/item/hemostat, +/obj/item/retractor, +/obj/item/cautery, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bkX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bkY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bkZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Genetics Cloning Foyer"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/power/apc{ + dir = 1; + name = "Port Emergency Storage APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bla" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"blb" = ( +/turf/open/floor/plating, +/area/storage/emergency/port) +"blc" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bld" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ble" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"blf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"blg" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"blh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bli" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"blj" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"blk" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bll" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bln" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26; + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blq" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"blr" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/healthanalyzer, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bls" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blt" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blv" = ( +/obj/structure/table, +/obj/item/paicard, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blw" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blx" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bly" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blC" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blD" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"blE" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"blF" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blG" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blH" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + network = list("ss13","rd") + }, +/obj/structure/sink/kitchen{ + name = "utility sink"; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blI" = ( +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blJ" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 14 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Robotics Lab APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"blL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"blM" = ( +/obj/machinery/rnd/server, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"blN" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"blP" = ( +/obj/effect/landmark/event_spawn, +/obj/item/beacon, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"blQ" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"blR" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/explab) +"blS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/book/manual/wiki/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"blT" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_circuit_printer, +/obj/item/integrated_electronics/wirer, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"blU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/integrated_electronics/debugger, +/obj/machinery/computer/security/telescreen/circuitry{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"blV" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/stack/sheet/metal/ten, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"blW" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/wirer, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/circuitry{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"blX" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"blZ" = ( +/obj/machinery/computer/camera_advanced/xenobio, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bmc" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/britcup{ + desc = "Kingston's personal cup." + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bmd" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bme" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bmf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bmg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Genetics Maintenance"; + req_one_access_txt = "12;45;5;9" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bmh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bmi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bmj" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bmk" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bml" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bmn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/emergency/port) +"bmp" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bmq" = ( +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bmr" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Morgue"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bms" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/medical"; + dir = 8; + name = "Medbay Security APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/camera{ + c_tag = "Medbay Security Post"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/structure/closet/secure_closet/security/med, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bmt" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bmu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bmv" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bmw" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bmx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bmy" = ( +/obj/machinery/holopad, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Kitchen"; + location = "Med" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bmz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bmA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bmB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmC" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmH" = ( +/obj/machinery/holopad, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci2"; + location = "Sci" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bmL" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bmM" = ( +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmN" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmO" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bmR" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bmS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"bmT" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"bmU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"bmV" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/engine, +/area/science/explab) +"bmW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/engine, +/area/science/explab) +"bmX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/explab) +"bmY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/engine, +/area/science/explab) +"bmZ" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/analyzer, +/obj/machinery/magnetic_controller{ + autolink = 1; + pixel_x = -28; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bna" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/box/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bnb" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bnc" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"bnd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"bnh" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bni" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/science/xenobiology) +"bnj" = ( +/turf/closed/wall, +/area/science/xenobiology) +"bnl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bnn" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/cargo) +"bno" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnp" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnq" = ( +/obj/item/beacon, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bns" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnt" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bnu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bnv" = ( +/turf/closed/wall, +/area/medical/genetics) +"bnw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Cloning"; + req_one_access_txt = "5;9" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"bnx" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/mask/surgical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bny" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/item/kirbyplants{ + icon_state = "plant-11" + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bnz" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bnA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"bnB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Medbay Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bnC" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/britcup{ + desc = "Kingston's personal cup." + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnD" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnG" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bnI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bnL" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bnM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bnN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bnO" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bnP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bnQ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bnR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bnS" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bnT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bnU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Room"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bnV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/engine, +/area/science/explab) +"bnW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/turf/open/floor/engine, +/area/science/explab) +"bnX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "test chamber blast door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/explab) +"bnY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/turf/open/floor/engine, +/area/science/explab) +"bnZ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"boa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/science/explab) +"boc" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"bod" = ( +/turf/closed/wall, +/area/science/explab) +"boe" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"bof" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/trinary/filter, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/science/explab) +"bog" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/science/explab) +"boh" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/engine, +/area/science/explab) +"bok" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/cargo) +"bom" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"bon" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"boo" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Port Aft"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bop" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"boq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bor" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/medical/genetics) +"bos" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/medical/genetics) +"bot" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/medical/genetics) +"bou" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/genetics) +"bov" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bow" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"box" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"boy" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"boz" = ( +/obj/machinery/vending/clothing, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"boA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"boC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"boD" = ( +/obj/item/ectoplasm, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"boE" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boH" = ( +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -32 + }, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boI" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boJ" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boL" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boM" = ( +/obj/structure/bed/roller, +/obj/machinery/camera{ + c_tag = "Medbay Entrance"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boO" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"boP" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boQ" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boR" = ( +/obj/structure/table, +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boS" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boT" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boU" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -2; + pixel_y = -27 + }, +/obj/machinery/camera{ + c_tag = "Research Division Lobby"; + dir = 1 + }, +/obj/machinery/light, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"boX" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = -26; + pixel_y = 4; + req_access_txt = "29" + }, +/obj/machinery/light_switch{ + pixel_x = -25; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"boZ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bpa" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bpb" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bpc" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/camera{ + c_tag = "Server Room"; + network = list("ss13","rd"); + pixel_x = 22 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bpd" = ( +/obj/machinery/button/door{ + id = "testlab"; + name = "Window Blast Doors"; + pixel_x = -6 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "telelab"; + name = "Test Chamber Blast Door"; + pixel_x = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bpe" = ( +/obj/machinery/computer/rdconsole/experiment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bpf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bpg" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bph" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera{ + c_tag = "Experimentation Lab Central"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bpi" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bpn" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bpo" = ( +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"bpp" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"bpq" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bpr" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/engine, +/area/science/xenobiology) +"bpt" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bpu" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bpv" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/medical/genetics) +"bpw" = ( +/obj/structure/flora/grass/jungle, +/obj/item/reagent_containers/food/snacks/grown/banana, +/turf/open/floor/grass, +/area/medical/genetics) +"bpx" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/junglebush, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/medical/genetics) +"bpy" = ( +/obj/machinery/clonepod, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bpz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bpC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/genetics) +"bpD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bpE" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bpF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bpG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpK" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpL" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bpM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bpN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpO" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpR" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpS" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bpV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"bpW" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Chemistry Desk"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bpX" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/chemistry) +"bpY" = ( +/turf/closed/wall, +/area/medical/chemistry) +"bqb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"bqc" = ( +/obj/structure/table/reinforced, +/obj/item/pen{ + layer = 3.1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Research and Development Desk"; + req_one_access_txt = "7;29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/obj/item/folder/white, +/turf/open/floor/plating, +/area/science/lab) +"bqd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/public/glass{ + name = "Research Division" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqe" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass{ + name = "Research Division" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Research Division" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqg" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/item/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bqh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bqi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bqj" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bqk" = ( +/obj/machinery/aug_manipulator, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bql" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Server Room APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bqm" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bqn" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bqo" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqq" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqs" = ( +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqx" = ( +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bqA" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bqC" = ( +/obj/machinery/monkey_recycler, +/obj/structure/window/reinforced, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bqE" = ( +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bqF" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bqG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqH" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "containment blast door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqI" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqJ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqK" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bqO" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12; 55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bqS" = ( +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/entry"; + dir = 4; + name = "Arrivals APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bqT" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/item/reagent_containers/food/snacks/grown/banana, +/obj/machinery/camera{ + c_tag = "Genetics Monkey Pen Fore"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bqU" = ( +/obj/structure/sink/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 6 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bqV" = ( +/obj/structure/flora/grass/jungle/b, +/obj/machinery/light/small{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"bqW" = ( +/obj/machinery/computer/cloning{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bqX" = ( +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bqY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 23 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bqZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bra" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "GeneticsDoor"; + name = "Cloning"; + req_one_access_txt = "5;9" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"brb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"brc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"brd" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Medbay APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bre" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "Medbay APC"; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"brf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"brg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"brh" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bri" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"brj" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"brk" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"brl" = ( +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"brm" = ( +/obj/machinery/chem_master, +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + pixel_x = 32; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"brq" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/item/stack/cable_coil/orange, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"brr" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"brs" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"brt" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bru" = ( +/obj/machinery/holopad, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"brv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"brw" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"brx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bry" = ( +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/crowbar, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"brz" = ( +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"brA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/bot_assembly/cleanbot, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"brB" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"brC" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"brD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/science/server) +"brE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/science/server) +"brF" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"brG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/light_switch{ + pixel_x = -25 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brK" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brL" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brM" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/plasteel/white, +/area/science/explab) +"brO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"brR" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/xenobiology) +"brT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/closet/l3closet, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"brU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/structure/sign/departments/xenobio{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"brV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"brW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"brX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bsa" = ( +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bsb" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #5"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bsc" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio5"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bsd" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #6"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bse" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bsf" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Starboard"; + network = list("ss13","rd") + }, +/obj/structure/sign/departments/xenobio{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bsl" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bsm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Arrivals Starboard Aft"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bsn" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bso" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/grass/jungle/b, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/medical/genetics) +"bsp" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/grass, +/area/medical/genetics) +"bsq" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/medical/genetics) +"bsr" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/camera{ + c_tag = "Genetics Cloning"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/genetics) +"bss" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bst" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bsw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/genetics) +"bsx" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bsy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bsz" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bsA" = ( +/turf/closed/wall, +/area/medical/sleeper) +"bsB" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bsC" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bsD" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bsE" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bsF" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bsG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bsH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "medbaybolts"; + name = "Medbay" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bsI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + id_tag = "medbaybolts"; + name = "Medbay" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bsJ" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsK" = ( +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsL" = ( +/obj/item/storage/box/beakers, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsN" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bsR" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bsS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bsT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Research Lab APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bsU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bsV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bsW" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bsX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bsY" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bsZ" = ( +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bta" = ( +/obj/item/retractor, +/obj/item/hemostat, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"btb" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/machinery/camera{ + c_tag = "Robotics - Aft"; + dir = 1; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"btc" = ( +/obj/machinery/computer/operating{ + dir = 8; + name = "Robotics Operating Computer" + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"btd" = ( +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bte" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/server) +"btf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access_txt = "30" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"btg" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wrench, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/item/multitool, +/obj/item/multitool, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bth" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bti" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"btk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"btl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"btp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bts" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"btt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btA" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/sign/departments/xenobio{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"btB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"btE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"btF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/blobstart, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"btK" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 13; + id = "ferry_home"; + name = "port bay 2"; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"btL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"btM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 2" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"btN" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"btO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"btP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"btQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"btR" = ( +/obj/structure/flora/ausbushes/brflowers, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"btS" = ( +/turf/open/floor/grass, +/area/medical/genetics) +"btT" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/item/reagent_containers/food/snacks/grown/banana, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"btU" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btX" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/medical_cloning{ + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btY" = ( +/obj/structure/table, +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/button/door{ + desc = "A remote control switch for the genetics doors."; + id = "GeneticsDoor"; + name = "Genetics Exit Button"; + normaldoorcontrol = 1; + pixel_x = 24; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"btZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bua" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bub" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"buc" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bud" = ( +/obj/item/wrench/medical, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bue" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/medical/sleeper) +"buf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bug" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"buh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bui" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"buj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Chemistry"; + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"buk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bul" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bum" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bun" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bup" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"buq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/lab) +"bur" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/rnd/production/protolathe/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"bus" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Research and Development Lab"; + dir = 8; + network = list("ss13","rd") + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"but" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"buu" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/clothing/mask/cigarette, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"buv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"buw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bux" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"buy" = ( +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"buz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/explab) +"buA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"buC" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"buD" = ( +/obj/item/kirbyplants{ + icon_state = "plant-11" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buG" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buH" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"buI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"buL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"buW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bva" = ( +/turf/closed/wall, +/area/maintenance/department/engine) +"bvb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bvc" = ( +/turf/closed/wall/r_wall, +/area/medical/genetics) +"bvd" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Genetics"; + req_access_txt = "9" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bve" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/medical/genetics) +"bvf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Medbay Port Hallway"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bvg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bvh" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bvi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bvj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bvk" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvm" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvo" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvp" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bvq" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bvr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bvs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bvt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bvu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvw" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"bvx" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/lab) +"bvy" = ( +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/effect/turf_decal/delivery, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"bvz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bvA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvB" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 34 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvE" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bvG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "rndshutters"; + name = "research shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bvH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/explab) +"bvI" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Science Access Airlock"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bvJ" = ( +/obj/structure/closet/firecloset/full, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/explab) +"bvK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/explab) +"bvL" = ( +/obj/machinery/power/apc/highcap/ten_k{ + dir = 1; + name = "Research Division APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvR" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvT" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvU" = ( +/obj/machinery/recharger, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvV" = ( +/turf/open/floor/plasteel, +/area/science/explab) +"bvW" = ( +/obj/machinery/magnetic_module, +/obj/effect/landmark/blobstart, +/obj/structure/target_stake, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bvY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"bvZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bwa" = ( +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bwb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bwc" = ( +/obj/machinery/chem_master, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bwe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bwf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bwh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bwm" = ( +/turf/closed/wall, +/area/maintenance/department/science) +"bwn" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12; 55" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bws" = ( +/obj/structure/closet, +/obj/item/stack/cable_coil/random, +/obj/item/electronics/airalarm, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bwt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bwu" = ( +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"bwv" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bww" = ( +/obj/machinery/computer/scan_consolenew, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwx" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwz" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwA" = ( +/obj/structure/table, +/obj/item/storage/box/rxglasses{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/bodybags, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bwB" = ( +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bwC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bwD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bwE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/sleeper) +"bwF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/bloodbankgen, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bwG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bwH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bwI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bwK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bwT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bwU" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bwV" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bwW" = ( +/obj/structure/rack, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bxa" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/research_and_development, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 13 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 12 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxg" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bxh" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "R&D Lab"; + req_one_access_txt = "7;29;30" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"bxi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci9"; + location = "Sci8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxk" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci8"; + location = "Sci7" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxn" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bxp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "rndshutters"; + name = "research shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bxq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxu" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxw" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxC" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxD" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxF" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bxG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/explab) +"bxH" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxK" = ( +/obj/structure/chair/stool, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bxM" = ( +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxN" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxO" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxP" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bxQ" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxR" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxS" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxT" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bxY" = ( +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bxZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bya" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"byb" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"byc" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"byd" = ( +/obj/structure/flora/junglebush/c, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/genetics) +"bye" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"byf" = ( +/obj/structure/table, +/obj/item/storage/box/disks, +/obj/item/flashlight/pen, +/obj/item/flashlight/pen, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byg" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byh" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byk" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/monkeycubes, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"byl" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bym" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"byn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"byo" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/sleeper) +"byp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"byr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bys" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"byt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"byu" = ( +/turf/closed/wall, +/area/crew_quarters/heads/cmo) +"byv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "cmoshutters"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"byw" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/machinery/power/apc{ + dir = 8; + name = "Chemistry APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/radio/headset/headset_med, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"byx" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"byz" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Chemistry Testing"; + req_access_txt = "5; 33" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/mob/living/simple_animal/mouse/white{ + name = "Labrette" + }, +/turf/open/floor/engine, +/area/medical/chemistry) +"byA" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/medical/chemistry) +"byC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/research{ + name = "R&D Lab"; + req_one_access_txt = "7;29;30" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"byE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"byF" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"byG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"byH" = ( +/obj/structure/table, +/obj/item/multitool, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"byI" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"byJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byL" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci5"; + location = "Sci4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"byO" = ( +/obj/machinery/door/poddoor/preopen{ + id = "rndshutters"; + name = "research shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"byP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/explab) +"byQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/explab) +"byR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"byS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/explab) +"byT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byU" = ( +/obj/structure/chair/comfy{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byV" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/light, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byW" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byX" = ( +/obj/machinery/camera{ + c_tag = "Research Division Secure Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"byZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bza" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzb" = ( +/obj/structure/closet/radiation, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzc" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzd" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"bze" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/science/explab) +"bzg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bzh" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Experimentation Lab"; + dir = 1; + network = list("ss13","rd") + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzi" = ( +/obj/structure/table, +/obj/item/electropack, +/obj/item/taperecorder, +/obj/item/screwdriver, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzj" = ( +/obj/structure/table, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bzk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #1"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzr" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #3"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzs" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"bzy" = ( +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"bzz" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bzA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bzB" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the monastery."; + dir = 8; + name = "Monastery Monitor"; + network = list("monastery"); + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/secondary/entry) +"bzC" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bzD" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bzE" = ( +/obj/structure/flora/grass/jungle/b, +/obj/machinery/camera{ + c_tag = "Genetics Monkey Pen Aft"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grass, +/area/medical/genetics) +"bzF" = ( +/obj/machinery/door/window/eastleft{ + name = "Monkey Pen"; + req_one_access_txt = "9" + }, +/obj/item/reagent_containers/food/snacks/grown/banana, +/turf/open/floor/grass, +/area/medical/genetics) +"bzG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzH" = ( +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzK" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bzM" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bzN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bzO" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"bzP" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bzQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bzR" = ( +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bzS" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bzT" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/mask/surgical, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bzU" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"bzV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bzW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bzX" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bzY" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/crew_quarters/heads/cmo) +"bzZ" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAa" = ( +/obj/machinery/computer/crew, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAb" = ( +/obj/machinery/computer/med_data, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAc" = ( +/obj/machinery/computer/card/minor/cmo, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAd" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/keycard_auth{ + pixel_x = 26 + }, +/obj/machinery/button/door{ + dir = 4; + id = "cmoshutters"; + name = "Privacy shutters"; + pixel_x = 38; + req_access_txt = "40" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bAf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bAg" = ( +/obj/structure/table/glass, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/stack/cable_coil/random, +/obj/item/book/manual/wiki/chemistry, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/stack/sheet/mineral/plasma{ + amount = 2; + layer = 2.9 + }, +/obj/item/screwdriver, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bAi" = ( +/obj/machinery/smoke_machine, +/turf/open/floor/engine, +/area/medical/chemistry) +"bAk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"bAo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdprivacy"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bAp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bAq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdprivacy"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bAr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdprivacy"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bAt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bAu" = ( +/turf/closed/wall, +/area/security/checkpoint/science) +"bAv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bAy" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"bAA" = ( +/turf/closed/wall, +/area/science/storage) +"bAB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/science/storage) +"bAC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bAD" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bAE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bAF" = ( +/turf/closed/wall, +/area/science/mixing) +"bAG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"bAH" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bAI" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bAJ" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bAK" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bAL" = ( +/obj/structure/transit_tube/station/reverse/flipped, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bAM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/extinguisher, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bAN" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/medical/genetics) +"bAO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/grass, +/area/medical/genetics) +"bAP" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/medical/genetics) +"bAQ" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/item/storage/pill_bottle/mutadone, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAR" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAV" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Genetics"; + name = "Genetics Requests Console"; + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bAW" = ( +/turf/closed/wall, +/area/medical/virology) +"bAX" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bAY" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/medical/virology) +"bBb" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bBc" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bBd" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bBe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bBf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bBg" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBi" = ( +/obj/effect/landmark/start/chief_medical_officer, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Chief Medical Office"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bBl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Lab Maintenance"; + req_access_txt = "5; 33" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bBm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBo" = ( +/turf/closed/wall, +/area/hallway/primary/aft) +"bBp" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hor) +"bBq" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/power/apc{ + dir = 8; + name = "RD Office APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBr" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBu" = ( +/obj/item/kirbyplants/dead, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/button/door{ + desc = "A switch that controls privacy shutters."; + id = "rdprivacy"; + name = "Privacy Shutters"; + pixel_x = 40; + pixel_y = -5; + req_access_txt = "30" + }, +/obj/machinery/keycard_auth{ + pixel_x = 28; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "rndshutters"; + name = "Research Lockdown"; + pixel_x = 28; + pixel_y = -5; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "research_shutters_2"; + name = "RnD Shutters"; + pixel_x = 40; + pixel_y = 5; + req_access_txt = "47" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bBw" = ( +/obj/machinery/computer/security, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bBx" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bBy" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecomms)"; + pixel_x = 28; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bBz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBA" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBB" = ( +/obj/item/kirbyplants{ + icon_state = "plant-20"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bBC" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/engine, +/area/science/storage) +"bBD" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/storage) +"bBE" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bBF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bBG" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/turf/open/floor/engine, +/area/science/storage) +"bBH" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bBI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bBJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bBK" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBL" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/airalarm/unlocked{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bBN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bBO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bBP" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBQ" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Toxins Lab APC"; + pixel_y = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/camera{ + c_tag = "Toxins Lab Starboard"; + network = list("ss13","rd") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBT" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bBU" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"bBV" = ( +/obj/structure/transit_tube/curved, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"bBW" = ( +/turf/open/space, +/area/space) +"bBX" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/engine) +"bBY" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bBZ" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCa" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCb" = ( +/obj/machinery/dna_scannernew, +/obj/machinery/camera{ + c_tag = "Genetics"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCc" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCe" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Genetics APC"; + pixel_x = 27 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bCf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bCg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bCh" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bCi" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bCj" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"bCl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -2; + pixel_y = -27 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bCm" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"bCn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bCo" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bCp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bCq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Office"; + req_access_txt = "40" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/heads/cmo) +"bCr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCs" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen{ + layer = 3.1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCt" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/clothing/glasses/hud/health, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCu" = ( +/obj/structure/table/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/stack/medical/gauze, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCv" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 10 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bCw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "CMO Maintenance"; + req_access_txt = "40" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 11 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCB" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bCD" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bCE" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCG" = ( +/obj/structure/displaycase/labcage, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCI" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bCJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdprivacy"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bCK" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Science Security Post"; + dir = 4; + network = list("ss13","rd") + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bCL" = ( +/obj/effect/landmark/start/depsec/science, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bCM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bCN" = ( +/obj/structure/chair/comfy, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bCO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bCP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/storage) +"bCQ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bCR" = ( +/turf/open/floor/engine, +/area/science/storage) +"bCS" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/science/storage) +"bCT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bCU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bCV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"bCW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bCX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bCZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDb" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bDc" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bDd" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 32; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/wrench, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bDe" = ( +/obj/machinery/light{ + light_color = "#d1dfff" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bDf" = ( +/obj/structure/transit_tube, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"bDg" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDh" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDi" = ( +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDj" = ( +/obj/item/trash/candy, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDk" = ( +/obj/item/chair, +/obj/item/cigbutt/roach, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDl" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bDm" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bDn" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bDo" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bDp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/plaque, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bDq" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bDr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/sleeper) +"bDs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bDt" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDv" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDx" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/cmo"; + dir = 4; + name = "CMO's Office APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bDy" = ( +/turf/closed/wall, +/area/medical/exam_room) +"bDz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bDA" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bDB" = ( +/obj/machinery/airalarm/unlocked{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDC" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDD" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDE" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDF" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bDG" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bDH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bDI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/closet/wardrobe/red, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bDK" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bDL" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/turf/open/floor/engine, +/area/science/storage) +"bDM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/engine, +/area/science/storage) +"bDN" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/science/storage) +"bDO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/storage) +"bDP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/science/storage) +"bDQ" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bDR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bDS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bDT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bDU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research/glass{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bDV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bEa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bEb" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bEc" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bEd" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bEf" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bEj" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden, +/obj/machinery/meter, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEl" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air Out" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEm" = ( +/obj/machinery/door/airlock/atmos/abandoned{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEq" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEr" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"bEs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bEt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bEu" = ( +/obj/structure/closet/l3closet, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bEv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/rnd/production/techfab/department/medical, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEw" = ( +/obj/structure/table, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEx" = ( +/obj/structure/table, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/southleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEy" = ( +/obj/structure/table, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/southright{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEz" = ( +/obj/structure/table, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEB" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bED" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/valentine, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEE" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEF" = ( +/obj/item/cartridge/medical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/cartridge/medical{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/cartridge/medical, +/obj/item/cartridge/chemistry{ + pixel_y = 2 + }, +/obj/structure/table, +/obj/machinery/light, +/obj/item/wrench/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEG" = ( +/obj/item/folder/blue, +/obj/item/stamp/cmo, +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEH" = ( +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/machinery/light_switch{ + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bEI" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/closet, +/obj/item/clothing/under/rank/medical/doctor/nurse, +/obj/item/clothing/head/nursehat, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/sign/poster/official/no_erp{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bEJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/landmark/blobstart, +/obj/item/melee/baton/cattleprod{ + preload_cell_type = /obj/item/stock_parts/cell/high + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bEK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "CMOCell"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bEL" = ( +/obj/machinery/door/airlock/command{ + id_tag = "CMOCell"; + name = "Personal Examination Room"; + req_access_txt = "40" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bEM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEQ" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bER" = ( +/obj/machinery/computer/mecha{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/obj/machinery/light_switch{ + dir = 9; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bES" = ( +/obj/item/aicard, +/obj/item/circuitboard/aicore, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/obj/machinery/light, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bET" = ( +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/item/stamp/rd, +/obj/machinery/status_display/ai{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + dir = 1; + network = list("ss13","rd") + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bEU" = ( +/obj/item/cartridge/signal/toxins, +/obj/item/cartridge/signal/toxins{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/cartridge/signal/toxins{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/structure/table/glass, +/obj/machinery/computer/security/telescreen/rd{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bEV" = ( +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/machinery/modular_computer/console/preset/research{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bEW" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -32 + }, +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bEX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bEY" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Science Security APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/closet/secure_closet/security/science, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bEZ" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bFa" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/storage) +"bFb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/science/storage) +"bFd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/science/storage) +"bFf" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bFh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFi" = ( +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFj" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFk" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/analyzer, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFl" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bFn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bFp" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bFr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bFs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bFt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bFu" = ( +/obj/machinery/button/massdriver{ + dir = 4; + id = "toxinsdriver"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bFx" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"bFy" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFz" = ( +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFB" = ( +/obj/item/newspaper, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFC" = ( +/obj/item/wallframe/camera, +/obj/machinery/button/door{ + id = "PottySci"; + name = "Bathroom Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 4; + specialfunctions = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFD" = ( +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bFE" = ( +/obj/docking_port/stationary{ + dwidth = 2; + height = 6; + id = "monastery_shuttle_asteroid"; + name = "monastery"; + width = 5 + }, +/turf/open/space, +/area/space/nearstation) +"bFF" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bFG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bFH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"bFI" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bFJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bFK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bFL" = ( +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bFM" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/doorButtons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bFN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"bFO" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"bFP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFR" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFS" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFU" = ( +/turf/closed/wall, +/area/medical/surgery) +"bFV" = ( +/obj/structure/table/glass, +/obj/item/flashlight/pen, +/obj/item/clothing/neck/stethoscope, +/obj/item/lipstick/black, +/obj/machinery/power/apc{ + dir = 8; + name = "Personal Examination Room APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/item/reagent_containers/pill/morphine, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bFW" = ( +/obj/effect/decal/remains/human, +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bFX" = ( +/obj/structure/bed, +/obj/item/bedsheet/cmo, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/restraints/handcuffs, +/obj/item/clothing/mask/muzzle, +/obj/machinery/light_switch{ + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"bFY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/departments/examroom{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bFZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/department/engine) +"bGa" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/hallway/primary/aft) +"bGb" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"bGc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"bGd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bGe" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bGf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine, +/area/science/storage) +"bGg" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/storage) +"bGh" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bGi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Toxins Storage"; + dir = 8; + network = list("ss13","rd") + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/engine, +/area/science/storage) +"bGj" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bGk" = ( +/obj/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bGl" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bGm" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = -24; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGn" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGo" = ( +/obj/item/assembly/signaler{ + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGp" = ( +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Toxins Lab Port"; + dir = 1; + network = list("ss13","rd") + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGq" = ( +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bGt" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bGu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bGv" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bGw" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bGx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bGy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bGA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Launch Maintenance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"bGB" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bGD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bGE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/dock) +"bGF" = ( +/obj/machinery/door/airlock/external{ + name = "Pod Docking Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/chapel/dock) +"bGG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/floor/plating/airless, +/area/chapel/dock) +"bGH" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"bGI" = ( +/obj/structure/window/reinforced, +/turf/open/space/basic, +/area/space/nearstation) +"bGK" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bGM" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bGN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bGO" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bGP" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bGQ" = ( +/obj/structure/window/reinforced, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bGR" = ( +/obj/machinery/door/window/eastleft{ + dir = 2; + name = "Monkey Pen"; + req_one_access_txt = "39" + }, +/mob/living/carbon/monkey, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bGS" = ( +/obj/machinery/doorButtons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + req_access_txt = "39" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bGT" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bGU" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Virology APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bGV" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bGW" = ( +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bGX" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bGY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bGZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bHa" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bHb" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/item/reagent_containers/glass/beaker/synthflesh, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bHc" = ( +/obj/machinery/computer/med_data, +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bHd" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bHe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/medical/surgery) +"bHf" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHi" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHj" = ( +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/science, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHk" = ( +/obj/item/gps{ + gpstag = "RD0" + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHm" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHo" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHr" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bHu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/storage) +"bHv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/science/storage) +"bHw" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"bHy" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"bHz" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/button/door/incinerator_vent_toxmix{ + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bHA" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/button/ignition{ + id = "toxigniter"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ + pixel_x = 6; + pixel_y = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bHC" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Incinerator Output Pump" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bHD" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bHE" = ( +/obj/structure/window/reinforced, +/obj/machinery/doppler_array/research/science, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bHI" = ( +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"bHJ" = ( +/turf/open/floor/plating, +/area/chapel/dock) +"bHK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"bHL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"bHM" = ( +/turf/closed/wall/r_wall, +/area/chapel/dock) +"bHN" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bHP" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bHQ" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bHR" = ( +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bHS" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bHT" = ( +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bHU" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bHV" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bHX" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bHY" = ( +/obj/machinery/camera{ + c_tag = "Virology"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bHZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bIa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bIb" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bIc" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bId" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIe" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Medbay Equipment Room"; + dir = 1; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIf" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIg" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIi" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIj" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/surgery) +"bIk" = ( +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bIl" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bIm" = ( +/obj/machinery/camera{ + c_tag = "Medbay Recovery Room"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + frequency = 1485; + name = "Station Intercom (Medbay)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bIn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/surgery) +"bIo" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Surgery"; + network = list("ss13","surgery") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIs" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bIt" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Eng2"; + location = "Eng" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci6"; + location = "Eng3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIy" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci7"; + location = "Sci6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bID" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Eng"; + location = "Sci5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIE" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bIF" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/turf/open/floor/engine, +/area/science/storage) +"bIG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/science/storage) +"bIH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc{ + name = "Toxins Storage APC"; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/storage) +"bII" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"bIJ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/turf/open/floor/engine, +/area/science/storage) +"bIK" = ( +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bIL" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, +/turf/open/floor/engine, +/area/science/mixing) +"bIM" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bIN" = ( +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 4; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("toxins"); + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bIP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"bIQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bIR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bIT" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bIU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/closed/wall, +/area/chapel/dock) +"bIV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/chapel/dock) +"bIW" = ( +/obj/machinery/computer/shuttle/monastery_shuttle, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bIX" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bIY" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space) +"bIZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJa" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJc" = ( +/obj/structure/chair/comfy/black, +/obj/item/trash/pistachios, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJd" = ( +/obj/structure/chair/comfy/black, +/obj/item/stack/spacecash/c100, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJe" = ( +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJf" = ( +/obj/structure/chair/comfy/black, +/obj/item/cigbutt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJg" = ( +/obj/item/trash/popcorn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJh" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bJi" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJj" = ( +/obj/structure/rack, +/obj/item/cartridge/medical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJk" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/infections, +/obj/item/hand_labeler, +/obj/item/radio/headset/headset_med, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bJl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bJm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bJn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bJo" = ( +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bJp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bJq" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Recovery Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bJr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bJs" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bJt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery"; + req_access_txt = "45" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bJu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJw" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJy" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bJz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bJB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJC" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/engineering{ + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/camera{ + c_tag = "Research Division Entrance"; + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJI" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/machinery/space_heater, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bJN" = ( +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bJO" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos{ + name = "Toxins Storage"; + req_access_txt = "24" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bJP" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bJQ" = ( +/obj/machinery/atmospherics/components/binary/pump/on, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/airlock_sensor/incinerator_toxmix{ + pixel_x = -24 + }, +/turf/open/floor/engine, +/area/science/mixing) +"bJR" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/mixing) +"bJS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing) +"bJT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/science/mixing) +"bJV" = ( +/obj/machinery/mass_driver{ + id = "toxinsdriver" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Mass Driver Door"; + req_access_txt = "7" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/mixing) +"bJZ" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bKa" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bKb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bKc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bKd" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Monastery Docking Bay APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bKe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"bKf" = ( +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"bKh" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Arena" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/chair/stool, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bKi" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/mob/living/simple_animal/chicken{ + name = "Bloodthirsty Peckins" + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bKj" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bKk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bKl" = ( +/obj/item/stack/medical/gauze, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bKm" = ( +/obj/structure/light_construct{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bKn" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/virology) +"bKo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bKp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bKq" = ( +/obj/effect/spawner/structure/window, +/obj/structure/sign/warning/deathsposal, +/turf/open/floor/plating, +/area/medical/virology) +"bKr" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bKs" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bKt" = ( +/obj/machinery/computer/pandemic, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bKu" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bKv" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/curtain{ + layer = 4.5 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bKw" = ( +/obj/machinery/vending/wallmed{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bKx" = ( +/obj/machinery/button/door{ + id = "patientB"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Patient Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bKy" = ( +/obj/machinery/door/airlock/medical{ + name = "Patient Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bKz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/item/beacon, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bKA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bKB" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bKC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bKD" = ( +/obj/structure/bed, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bKE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bKF" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bKG" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Surgery APC"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bKH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bKI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bKJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bKK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bKM" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bKO" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bKP" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"bKQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bKR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bKS" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "Atmospherics APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKT" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKU" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKV" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKX" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix to Engine" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bKZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bLa" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bLb" = ( +/obj/machinery/atmospherics/pipe/simple{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bLc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + frequency = 1441; + id_tag = "mix_in"; + name = "distro out" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bLd" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Waste Tank" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bLe" = ( +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bLf" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, +/turf/open/floor/engine, +/area/science/mixing) +"bLh" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/mixing) +"bLn" = ( +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLp" = ( +/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLq" = ( +/obj/machinery/door/airlock/grunge{ + name = "Monastery Transit" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"bLs" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bLt" = ( +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bLu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bLv" = ( +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bLx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bLy" = ( +/obj/structure/mineral_door/wood{ + name = "The Roosterdome" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bLz" = ( +/obj/item/bedsheet/medical, +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bLA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bLB" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bLC" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/item/stack/sheet/mineral/plasma{ + amount = 2 + }, +/obj/item/storage/box/monkeycubes{ + layer = 3.1 + }, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bLE" = ( +/obj/structure/table/glass, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = 32; + receive_ore_updates = 1 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bLF" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/pen{ + layer = 3.1 + }, +/obj/item/clothing/neck/stethoscope{ + layer = 3.2 + }, +/obj/machinery/light_switch{ + pixel_x = -22 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bLG" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bLH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/freezer, +/area/medical/medbay/central) +"bLI" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "patientB"; + name = "privacy shutters" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bLJ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bLK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bLL" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/surgery) +"bLM" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLN" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLO" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLQ" = ( +/obj/structure/table, +/obj/item/surgical_drapes, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bLR" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bLS" = ( +/obj/machinery/vending/cola, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bLT" = ( +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bLU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"bLV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bLW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bLX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bLY" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bLZ" = ( +/obj/machinery/meter/atmos/atmos_waste_loop, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMa" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMb" = ( +/obj/machinery/meter/atmos/distro_loop, +/obj/machinery/atmospherics/pipe/manifold/supply/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMc" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Distro" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMe" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMf" = ( +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMh" = ( +/obj/machinery/computer/atmos_control/tank{ + dir = 8; + input_tag = "mix_in"; + name = "Gas Mix Tank Control"; + output_tag = "mix_in"; + sensors = list("mix_sensor" = "Tank") + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMi" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"bMj" = ( +/obj/machinery/air_sensor{ + id_tag = "mix_sensor" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bMk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bMl" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "inc_in" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bMm" = ( +/obj/machinery/igniter{ + id = "toxigniter"; + luminosity = 2 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bMn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bMp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/science/mixing) +"bMq" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/mixing) +"bMr" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bMs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bMt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bMu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bMv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/dock) +"bMw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"bMx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"bMy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bMA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bMB" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bMC" = ( +/obj/item/stack/spacecash/c10, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bMD" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bME" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bMF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bMG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bMH" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMI" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMJ" = ( +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = 32 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMK" = ( +/obj/item/soap/nanotrasen, +/obj/item/clothing/neck/stethoscope, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/gun/syringe/dart, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bMM" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bMN" = ( +/obj/structure/table, +/obj/item/hemostat, +/obj/item/stack/medical/gauze, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMO" = ( +/obj/structure/table, +/obj/item/surgicaldrill, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMP" = ( +/obj/structure/table, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/item/circular_saw, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMQ" = ( +/obj/structure/table, +/obj/item/cautery{ + pixel_x = 4 + }, +/obj/item/razor{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMR" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bMS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bMT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bMU" = ( +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway Atmospherics"; + start_active = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecomms)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bMV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bMW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/aft) +"bMX" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bMY" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "External to Filter" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNd" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNf" = ( +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNg" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNh" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Ports" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNi" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Ports" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNk" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bNn" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bNo" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "mix_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bNp" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bNq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Launch Maintenance"; + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bNr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bNs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"bNt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Monastery Dock"; + dir = 1; + network = list("ss13","monastery") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bNu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bNv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bNw" = ( +/turf/closed/wall, +/area/chapel/dock) +"bNx" = ( +/obj/structure/transit_tube/station/reverse{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"bNy" = ( +/obj/structure/transit_tube/horizontal, +/obj/machinery/camera{ + c_tag = "Monastery Transit"; + dir = 1; + network = list("ss13","monastery") + }, +/turf/open/floor/plating, +/area/chapel/dock) +"bNz" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/chapel/dock) +"bNA" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/dock) +"bNB" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"bNE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"bNF" = ( +/obj/item/stack/medical/suture, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bNG" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bNH" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bNI" = ( +/obj/structure/window/reinforced, +/mob/living/simple_animal/chicken{ + name = "Killer Cluck" + }, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bNJ" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Arena" + }, +/obj/structure/window/reinforced, +/obj/structure/chair/stool, +/turf/open/floor/engine, +/area/maintenance/department/engine) +"bNK" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNL" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/beaker, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNM" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNN" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNO" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/beaker, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNP" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNQ" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNS" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNT" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNU" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNV" = ( +/obj/item/wrench/medical, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bNX" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bNZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOa" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOb" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOc" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOe" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"bOf" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bOg" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to External" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOh" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOi" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"bOk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOl" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOn" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOo" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOq" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Mix" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOs" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bOt" = ( +/obj/machinery/door/poddoor/incinerator_toxmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bOu" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/mixing) +"bOv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bOw" = ( +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bOx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bOy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bOz" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bOA" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bOB" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"bOD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"bOE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/medical/virology) +"bOF" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOJ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bOK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOL" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bOM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/aft) +"bON" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bOO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/engine/atmos) +"bOR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bOS" = ( +/obj/effect/turf_decal/vg_decals/atmos/mix, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bOT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/closed/wall, +/area/engine/atmos) +"bOU" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste to Filter" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOV" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to External" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bOZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPa" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPd" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPe" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPf" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bPg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + frequency = 1441; + id_tag = "n2o_out"; + name = "n2o out" + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bPh" = ( +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bPl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/science/mixing) +"bPn" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bPo" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"bPp" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bPq" = ( +/obj/item/trash/chips, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bPr" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"bPs" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/engine) +"bPv" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bPw" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bPx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bPy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/open/space/basic, +/area/space/nearstation) +"bPz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bPA" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPB" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bPC" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPD" = ( +/obj/structure/table, +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bPE" = ( +/turf/closed/wall, +/area/storage/tech) +"bPF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Tech Storage Maintenance"; + req_access_txt = "23" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bPG" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPJ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPK" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPL" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPM" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPN" = ( +/obj/machinery/conveyor_switch{ + id = "atmosdeliver" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPO" = ( +/obj/structure/disposalpipe/sorting/mail{ + sortType = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPQ" = ( +/turf/closed/wall, +/area/engine/atmos) +"bPR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"bPS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Central"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPT" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPU" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Air to Ports" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPW" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPX" = ( +/obj/machinery/computer/atmos_control/tank{ + dir = 8; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bPZ" = ( +/obj/machinery/air_sensor{ + id_tag = "n2o_sensor" + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bQa" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bQb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/miner/n2o, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bQc" = ( +/obj/machinery/camera{ + c_tag = "Monastery Asteroid Dock Port"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bQd" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/reedbush, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bQe" = ( +/obj/item/flashlight/lantern{ + icon_state = "lantern-on" + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bQf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/sand, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/chapel/asteroid/monastery) +"bQg" = ( +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/asteroid/monastery) +"bQh" = ( +/obj/machinery/camera{ + c_tag = "Monastery Asteroid Dock Staboard"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bQi" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bQj" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQm" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQn" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQo" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bQr" = ( +/turf/closed/wall/r_wall, +/area/storage/tech) +"bQs" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/item/aicard, +/obj/item/aiModule/reset, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQu" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQv" = ( +/obj/structure/rack, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/spawner/lootdrop/techstorage/engineering, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQw" = ( +/obj/structure/rack, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/obj/machinery/camera{ + c_tag = "Tech Storage" + }, +/obj/item/circuitboard/computer/monastery_shuttle, +/obj/effect/spawner/lootdrop/techstorage/service, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQx" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/rnd, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQy" = ( +/obj/structure/rack, +/obj/item/electronics/airalarm, +/obj/item/electronics/airlock, +/obj/item/electronics/apc, +/obj/item/electronics/firealarm, +/obj/item/electronics/firelock, +/obj/item/electronics/tracker, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQz" = ( +/obj/machinery/computer/arcade, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQA" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bQB" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Aft Hall APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bQC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Eng3"; + location = "Eng2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bQD" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bQE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/atmos) +"bQJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Ports to Filter" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQK" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQM" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Unfiltered to Mix" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bQP" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "n2o_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bQQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"bQR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"bQS" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bQT" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQU" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQX" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQY" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bQZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bRa" = ( +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"bRb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bRc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bRd" = ( +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRe" = ( +/obj/structure/closet/radiation, +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bRg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/radiation/rad_area{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRh" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRm" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRq" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bRs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRw" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRx" = ( +/obj/machinery/computer/atmos_control, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRy" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRA" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRC" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bRD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bRE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/maintenance/department/engine) +"bRF" = ( +/obj/structure/girder, +/turf/closed/wall, +/area/maintenance/department/engine) +"bRG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bRH" = ( +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bRK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/storage/tech) +"bRL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRM" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRO" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/medical, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRP" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/tcomms, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRQ" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/security, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRR" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRT" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRU" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bRV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bRZ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSa" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/machinery/conveyor{ + dir = 4; + id = "atmosdeliver" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSb" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Atmospherics" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/conveyor_switch{ + id = "atmosdeliver" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSc" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSd" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSe" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + frequency = 1441; + id_tag = "tox_out"; + name = "toxin out" + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSk" = ( +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSl" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSm" = ( +/obj/structure/flora/ausbushes, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bSn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bSo" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSp" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 2 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bSq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bSt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSu" = ( +/obj/item/broken_bottle, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSv" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSw" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bSx" = ( +/obj/structure/closet, +/obj/item/restraints/handcuffs/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bSy" = ( +/obj/machinery/gravity_generator/main/station, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"bSz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bSA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bSB" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bSC" = ( +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bSD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bSE" = ( +/obj/structure/sign/warning/radiation/rad_area{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/beacon, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSG" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSJ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bSL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSN" = ( +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway Engineering"; + dir = 1; + start_active = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/engineering{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-02" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/sign/departments/engineering{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSQ" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSR" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSS" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bST" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSU" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSV" = ( +/obj/machinery/computer/atmos_control/tank{ + dir = 8; + input_tag = "tox_in"; + name = "Plasma Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bSW" = ( +/obj/machinery/air_sensor{ + id_tag = "tox_sensor" + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSX" = ( +/obj/effect/turf_decal/vg_decals/atmos/plasma, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/miner/toxins, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bSZ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bTa" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bTb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bTc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/department/engine) +"bTd" = ( +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/obj/item/vending_refill/cola, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTf" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Virology Waste to Space" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bTg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Virology Waste to Atmospherics" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTh" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air Out" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bTi" = ( +/obj/item/picket_sign, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTj" = ( +/obj/structure/bonfire, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTk" = ( +/obj/structure/closet, +/obj/item/cigbutt/cigarbutt, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTl" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bTm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTo" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/gravity_generator) +"bTr" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/pen/blue, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"bTs" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/gravity_generator) +"bTt" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/electronics/apc, +/obj/item/electronics/airalarm, +/obj/item/electronics/airlock, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTw" = ( +/obj/structure/rack, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTx" = ( +/obj/structure/rack, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/machinery/light{ + light_color = "#cee5d2" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTy" = ( +/obj/structure/rack, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTz" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTA" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/multitool, +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_y = -32 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTB" = ( +/obj/machinery/power/apc{ + areastring = "/area/storage/tech"; + name = "Tech Storage APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/structure/closet/crate/solarpanel_small, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bTC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bTD" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"bTE" = ( +/turf/closed/wall, +/area/engine/engineering) +"bTF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_one_access_txt = "10;24" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bTG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engine/break_room) +"bTH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/sign/plaques/atmos{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Entrance" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/pipedispenser/disposal, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/fireaxecabinet{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/atmos) +"bTP" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Starboard"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bTR" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTT" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bTV" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8; + frequency = 1441; + id = "tox_in"; + pixel_y = 1 + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bTW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bTX" = ( +/obj/structure/table, +/obj/item/storage/box/mousetraps, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUb" = ( +/obj/structure/grille/broken, +/obj/structure/musician/piano, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUc" = ( +/obj/item/reagent_containers/food/snacks/beans, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUd" = ( +/obj/structure/closet, +/obj/item/shard, +/obj/item/stack/spacecash/c10, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUe" = ( +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUf" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bUg" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bUh" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bUi" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/camera{ + c_tag = "Engineering Security Post"; + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUj" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUk" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Engineering Foyer APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bUm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bUn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering Access" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bUo" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bUp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUq" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUr" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUs" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 to Pure" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUt" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUv" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUy" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUA" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUC" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bUD" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"bUE" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"bUF" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUG" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bUH" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/chief) +"bUI" = ( +/obj/item/cartridge/engineering{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/cartridge/engineering{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/cartridge/engineering{ + pixel_x = 3 + }, +/obj/structure/table/reinforced, +/obj/item/cartridge/atmos, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUJ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office" + }, +/obj/machinery/computer/security/telescreen/ce{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUK" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/computer/apc_control, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUL" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUM" = ( +/obj/machinery/computer/card/minor/ce, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bUN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/stairs, +/area/storage/tech) +"bUO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/storage/tech) +"bUP" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall, +/area/engine/engine_smes) +"bUQ" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bUR" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/smes/engineering, +/obj/machinery/camera{ + c_tag = "Engineering Power Storage" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bUS" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bUT" = ( +/turf/closed/wall, +/area/engine/engine_smes) +"bUU" = ( +/turf/closed/wall/r_wall, +/area/engine/engine_smes) +"bUV" = ( +/obj/structure/table, +/obj/item/pen, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -32 + }, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUW" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUY" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/goonplaque, +/area/engine/break_room) +"bVb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVc" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "atmospherics security door" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold4w/scrubbers, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVd" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVf" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVg" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bVi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bVj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "incinerator mix pump" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bVm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/engine/atmos) +"bVn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bVo" = ( +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bVp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bVr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bVs" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bVu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bVv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bVw" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bVy" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bVz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bVC" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bVD" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" + }, +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/paper/monitorkey, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bVE" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bVG" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bVH" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/lighter, +/obj/item/stamp/ce, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/keycard_auth{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "CE Office APC"; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bVI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8; + light_color = "#d8b1b1" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bVJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bVK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bVL" = ( +/obj/structure/table, +/obj/item/storage/box/smart_metal_foam{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bVM" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bVN" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bVO" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/engineering"; + dir = 8; + name = "Engineering Security APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bVP" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bVQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/closet/wardrobe/red, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bVR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bVS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 27; + pixel_y = -25 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bVW" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bVY" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVZ" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWb" = ( +/obj/machinery/computer/atmos_control/tank/carbon_tank{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"bWe" = ( +/obj/machinery/air_sensor/atmos/carbon_tank, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bWf" = ( +/obj/effect/turf_decal/vg_decals/atmos/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bWg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/miner/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bWh" = ( +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/office) +"bWi" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/reedbush, +/obj/machinery/camera{ + c_tag = "Monastery Asteroid Primary Entrance"; + dir = 1; + network = list("ss13","monastery") + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"bWj" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bWk" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bWl" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bWn" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/clothing/glasses/meson/gar, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bWo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bWp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bWq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bWr" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 22 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bWs" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/RnD_secure, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bWt" = ( +/obj/structure/rack, +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + dir = 1 + }, +/obj/effect/spawner/lootdrop/techstorage/command, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bWu" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/AI, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/storage/tech) +"bWv" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel/twenty{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the engine containment area."; + dir = 4; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWx" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWz" = ( +/obj/structure/tank_dispenser, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bWA" = ( +/obj/structure/filingcabinet, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the engine containment area."; + dir = 4; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWC" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/structure/closet/secure_closet/security/engine, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWD" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"bWE" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bWF" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bWG" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/shower{ + dir = 8; + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bWH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/engine/break_room) +"bWI" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWJ" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWP" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Pure" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWQ" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"bWT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bWV" = ( +/turf/closed/wall, +/area/chapel/main/monastery) +"bWW" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"bWX" = ( +/obj/effect/turf_decal/sand, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/chapel/asteroid/monastery) +"bWZ" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"bXa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bXd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"bXe" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bXf" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXg" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXj" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "ce_privacy"; + name = "Privacy Shutters"; + pixel_x = 24; + req_access_txt = "11" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXk" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering) +"bXl" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/cable_coil, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/engine/engine_smes"; + dir = 8; + name = "Engine Room APC"; + pixel_x = -26 + }, +/obj/structure/cable, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bXm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bXn" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bXo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bXp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bXq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"bXr" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Waste to Space" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXs" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXt" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXu" = ( +/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXw" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXx" = ( +/obj/machinery/computer/atmos_control/tank/oxygen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXy" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXA" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXB" = ( +/obj/machinery/computer/atmos_control/tank/air_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXC" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXD" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bXG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bXI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"bXJ" = ( +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"bXL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"bXM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"bXN" = ( +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"bXS" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"bXU" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bXV" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bXY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ce_privacy"; + name = "Privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bXZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ce_privacy"; + name = "Privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bYa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bYb" = ( +/turf/closed/wall, +/area/crew_quarters/heads/chief) +"bYc" = ( +/obj/machinery/computer/atmos_alert, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYd" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYe" = ( +/obj/machinery/computer/station_alert, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/engine/engine_smes) +"bYg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engine_smes) +"bYh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Storage"; + req_access_txt = "11" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engine_smes) +"bYi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/engine_smes) +"bYj" = ( +/obj/machinery/vending/engivend, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYk" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"bYm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYp" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bYs" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bYt" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"bYu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/atmos{ + name = "Incinerator"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bYv" = ( +/obj/machinery/atmospherics/pipe/simple/green/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"bYw" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bYz" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"bYA" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main/monastery) +"bYB" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/chapel, +/area/chapel/main/monastery) +"bYF" = ( +/obj/item/trash/pistachios, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bYI" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Port Fore" + }, +/obj/structure/sign/map{ + icon_state = "map-pubby"; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYT" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Starboard Fore" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bYZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZa" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZc" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZf" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Incinerator APC"; + pixel_x = -24 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZg" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZh" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZi" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bZj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bZl" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main/monastery) +"bZm" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main/monastery) +"bZn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"bZo" = ( +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"bZr" = ( +/obj/item/trash/tray, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bZs" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bZt" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"bZx" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/item/storage/belt/utility, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZz" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZD" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZI" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZJ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"bZK" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/relief_valve/atmos/atmos_waste{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/engine/atmos) +"bZL" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bZM" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bZN" = ( +/obj/machinery/atmospherics/pipe/simple, +/obj/structure/grille, +/obj/machinery/meter{ + name = "Mixed Air Tank Out" + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bZO" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZQ" = ( +/obj/machinery/computer/turbine_computer{ + dir = 8; + id = "incineratorturbine" + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = 24; + pixel_y = -6 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"bZR" = ( +/obj/machinery/atmospherics/pipe/simple/purple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bZS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_y = 22 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"bZT" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bZU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ + dir = 8 + }, +/obj/machinery/air_sensor/atmos/incinerator_tank{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"bZV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"bZY" = ( +/turf/closed/wall, +/area/chapel/office) +"caa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"cab" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"cae" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/engine/engineering) +"caf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cah" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"caj" = ( +/obj/structure/table, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/apc, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/cable_coil, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cak" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cal" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cam" = ( +/turf/open/floor/plasteel, +/area/engine/engineering) +"can" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"caq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"car" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"caw" = ( +/obj/structure/table, +/obj/item/rcl/pre_loaded, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cax" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/engineering) +"caz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"caA" = ( +/obj/machinery/air_sensor/atmos/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"caB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"caC" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"caD" = ( +/obj/machinery/air_sensor/atmos/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"caE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"caF" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"caG" = ( +/obj/machinery/air_sensor/atmos/air_tank, +/turf/open/floor/engine/air, +/area/engine/atmos) +"caH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"caI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Incinerator"; + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the turbine vent."; + dir = 4; + name = "turbine vent monitor"; + network = list("turbine"); + pixel_x = -29 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"caJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"caK" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"caL" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ + pixel_x = -6; + pixel_y = -26 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/igniter/incinerator_atmos, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caQ" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 8; + luminosity = 2 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caR" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/turbine{ + dir = 4; + luminosity = 2 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"caS" = ( +/turf/closed/wall, +/area/chapel/asteroid/monastery) +"caT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted/fulltile, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"caV" = ( +/obj/machinery/holopad, +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/chapel, +/area/chapel/main/monastery) +"caW" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main/monastery) +"caZ" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cba" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_robustgold, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cbb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"cbc" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbe" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbf" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbg" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbh" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbi" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbk" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbn" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbo" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/item/airlock_painter, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbs" = ( +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cbt" = ( +/obj/effect/turf_decal/vg_decals/atmos/nitrogen, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cbu" = ( +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cbv" = ( +/obj/effect/turf_decal/vg_decals/atmos/oxygen, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cbw" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cbx" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/vg_decals/atmos/air, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cby" = ( +/turf/open/floor/engine/air, +/area/engine/atmos) +"cbz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"cbA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cbB" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Incinerator to Output" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cbC" = ( +/obj/machinery/button/ignition/incinerator/atmos{ + pixel_x = 26; + pixel_y = -6 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cbD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cbE" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cbF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"cbG" = ( +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/chapel/office) +"cbK" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cbM" = ( +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main/monastery) +"cbN" = ( +/obj/structure/table/wood, +/obj/item/storage/book/bible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cbO" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/trophy{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cbP" = ( +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main/monastery) +"cbR" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Access" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cbS" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cbT" = ( +/obj/item/shovel, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cbV" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/engine/engineering) +"cbW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbX" = ( +/turf/open/floor/plating, +/area/engine/engineering) +"cbY" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cbZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cca" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccb" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -2 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccc" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cci" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccm" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"ccn" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cco" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/air, +/area/engine/atmos) +"ccp" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ccq" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ccr" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Incinerator Output Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ccs" = ( +/obj/structure/lattice, +/turf/closed/wall, +/area/maintenance/department/cargo) +"ccu" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"ccE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"ccF" = ( +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"ccH" = ( +/turf/open/floor/plasteel/chapel, +/area/chapel/main/monastery) +"ccJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ccM" = ( +/obj/structure/chair, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"ccN" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/medical/gauze, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ccO" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/obj/structure/table/optable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ccQ" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engine/engineering) +"ccR" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/gps/engineering, +/turf/open/floor/plating, +/area/engine/engineering) +"ccW" = ( +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/structure/table, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ccX" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"ccY" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cda" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cdc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdg" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cdh" = ( +/obj/structure/table/glass, +/obj/item/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cdi" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cdj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cdk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cdl" = ( +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cdm" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"cdo" = ( +/turf/open/floor/carpet, +/area/chapel/office) +"cdp" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/carpet/black, +/area/chapel/office) +"cdq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/chapel/main/monastery) +"cdr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cds" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chapel Port Access"; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdu" = ( +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/chapel/main/monastery) +"cdw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdA" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdC" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cdD" = ( +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/kitchen/fork, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"cdE" = ( +/obj/structure/chair, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cdI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank/high, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Engineering Port Aft"; + dir = 1; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdO" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cdR" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cdT" = ( +/obj/machinery/power/emitter/anchored{ + dir = 4; + state = 2 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cdW" = ( +/obj/structure/reflector/box/anchored, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ceb" = ( +/obj/machinery/computer/rdconsole/production{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cec" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"ced" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cee" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/office) +"cef" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/office) +"ceg" = ( +/obj/machinery/door/airlock/centcom{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/chapel/office) +"cei" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cej" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cek" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cel" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Access" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cen" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceo" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/asteroid, +/area/chapel/asteroid/monastery) +"ceq" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/engine/engineering) +"cer" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications Transit Tube"; + req_access_txt = "10; 61" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cet" = ( +/obj/structure/closet/radiation, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ceu" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cey" = ( +/obj/structure/girder, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ceA" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"ceB" = ( +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/chapel/office) +"ceC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ceE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ceF" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ceH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceK" = ( +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceL" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceN" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceQ" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ceT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engine/engineering) +"ceU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching telecomms."; + layer = 4; + name = "Telecomms Telescreen"; + network = list("tcomms"); + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ceV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"ceX" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cfa" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfd" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cff" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"cfl" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Access" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfm" = ( +/turf/closed/wall/mineral/iron, +/area/chapel/main/monastery) +"cfn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfp" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfr" = ( +/obj/structure/transit_tube_pod, +/obj/structure/transit_tube/station/reverse{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cfs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfu" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/engine/engineering) +"cfC" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cfD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Monastery APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cfH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cfI" = ( +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cfJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cfL" = ( +/obj/machinery/camera{ + c_tag = "Monastery Asteroid Starboard Aft"; + dir = 1; + network = list("ss13","monastery") + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/asteroid/monastery) +"cfN" = ( +/turf/closed/mineral, +/area/chapel/asteroid/monastery) +"cfO" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cfP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfQ" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"cfS" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cfX" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cfY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Engine" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cgb" = ( +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cgd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cgf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main/monastery) +"cgg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cgk" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/camera{ + c_tag = "Monastery Garden"; + network = list("ss13","monastery") + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgm" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/watermelon/holy, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cgp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cgr" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/engine/engineering) +"cgs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cgu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"cgv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cgx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"cgG" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cgH" = ( +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgI" = ( +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgJ" = ( +/obj/item/cultivator, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgK" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/sugarcane, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cgL" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/chaplain/holidaypriest, +/obj/item/clothing/suit/chaplain/nun, +/obj/item/clothing/head/nun_hood, +/obj/machinery/button/door{ + id = "Cell1"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cgM" = ( +/obj/structure/dresser, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cgN" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cgO" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"cgP" = ( +/obj/structure/transit_tube, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cgQ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cgU" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cgV" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"cgY" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"chb" = ( +/obj/machinery/camera{ + c_tag = "Monastery Kitchen"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chc" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chd" = ( +/obj/item/clothing/suit/apron/chef, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"chi" = ( +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chk" = ( +/obj/structure/sink/puddle, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/landmark/event_spawn, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chl" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cho" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"chp" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell1"; + name = "Cell 1" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chr" = ( +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cht" = ( +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"chv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"chB" = ( +/obj/item/seeds/banana, +/obj/item/seeds/grass, +/obj/item/seeds/grape, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chC" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chD" = ( +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/mineral/iron, +/area/chapel/main/monastery) +"chG" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/wheat, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"chJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main/monastery) +"chK" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/instrument/violin, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chL" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chM" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"chN" = ( +/obj/machinery/shower{ + dir = 8; + pixel_y = -4 + }, +/obj/item/soap/homemade, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"chU" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chV" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chW" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/storage/box/ingredients/wildcard{ + layer = 3.1 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chX" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/kitchen/rollingpin, +/obj/item/kitchen/knife, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chY" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"chZ" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cib" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cic" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cid" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cif" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/stack/cable_coil/yellow, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cig" = ( +/obj/structure/transit_tube/crossing, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cio" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/chaplain/holidaypriest, +/obj/item/clothing/suit/chaplain/nun, +/obj/item/clothing/head/nun_hood, +/obj/machinery/button/door{ + id = "Cell2"; + name = "Cell Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -25; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"cip" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/easel, +/obj/item/canvas/twentythreeXnineteen, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"ciq" = ( +/obj/structure/toilet/secret/low_loot{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"cit" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"civ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ciy" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"ciz" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciE" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciF" = ( +/obj/machinery/door/airlock{ + id_tag = "Cell2"; + name = "Cell 2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"ciG" = ( +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Aft"; + dir = 1; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"ciI" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Chamber" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engine/supermatter) +"ciJ" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciK" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciN" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciO" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + layer = 3.1; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ciS" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciT" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/harebell, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciV" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"ciX" = ( +/obj/structure/table/wood, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"ciY" = ( +/obj/structure/bed, +/obj/item/bedsheet/yellow, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/chapel/main/monastery) +"ciZ" = ( +/obj/machinery/shower{ + dir = 8; + pixel_y = -4 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/showroomfloor, +/area/chapel/main/monastery) +"cjf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjl" = ( +/obj/machinery/door/airlock/grunge{ + name = "Monastery Cemetary" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjm" = ( +/turf/closed/wall, +/area/maintenance/department/chapel/monastery) +"cjo" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light/small, +/obj/item/seeds/poppy, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cjp" = ( +/turf/closed/wall, +/area/library) +"cjq" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cjr" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cjt" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/engineering) +"cju" = ( +/turf/closed/mineral, +/area/asteroid/nearstation/bomb_site) +"cjv" = ( +/turf/closed/wall, +/area/asteroid/nearstation/bomb_site) +"cjw" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/asteroid/nearstation/bomb_site) +"cjx" = ( +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"cjB" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "monastery"; + width = 35 + }, +/turf/open/space/basic, +/area/space) +"cjC" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cjH" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Garden" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cjO" = ( +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 20; + layer = 3.1 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cjP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cjQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library) +"cjR" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library/lounge) +"cjV" = ( +/obj/machinery/camera/preset/toxins, +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"cjZ" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cka" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckb" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"ckc" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckd" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cke" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckf" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckg" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckh" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cki" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air Out" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckk" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/item/stack/rods/fifty, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckl" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/carpet, +/area/library) +"cko" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/plasteel/dark, +/area/library) +"ckp" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckt" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"cku" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"ckv" = ( +/obj/machinery/mass_driver{ + id = "chapelgun" + }, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Mass Driver" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckw" = ( +/obj/machinery/mass_driver{ + id = "chapelgun" + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cky" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckz" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckA" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckB" = ( +/obj/machinery/atmospherics/pipe/manifold/general/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckC" = ( +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckD" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckE" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library/lounge) +"ckG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckH" = ( +/turf/open/floor/plasteel/dark, +/area/library) +"ckI" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckJ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"ckK" = ( +/turf/closed/mineral/random/low_chance, +/area/asteroid/nearstation/bomb_site) +"ckL" = ( +/obj/item/beacon, +/turf/open/floor/plating/airless, +/area/asteroid/nearstation/bomb_site) +"ckM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckN" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ckO" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckP" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckQ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"ckR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"ckS" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Monastery Library"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckT" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckU" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckV" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"ckW" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/plasteel/dark, +/area/library) +"ckX" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"clb" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "mass driver door" + }, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"cld" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/department/chapel/monastery) +"cle" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/chapel/monastery) +"clf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/box/lights/bulbs, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"clg" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cli" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"clj" = ( +/obj/item/flashlight/lantern{ + icon_state = "lantern-on" + }, +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"clk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/libraryscanner, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"clm" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cln" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"clp" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/plasteel/dark, +/area/library) +"cls" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral, +/area/asteroid/nearstation/bomb_site) +"clv" = ( +/turf/closed/mineral/iron, +/area/asteroid/nearstation/bomb_site) +"clw" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"clz" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"clA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Telecommunications External Access"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clB" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"clC" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clD" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"clF" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/closed/mineral/random/low_chance, +/area/asteroid/nearstation/bomb_site) +"clG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clH" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Telecommunications External Access"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clL" = ( +/turf/closed/wall, +/area/tcommsat/computer) +"clM" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Waste to Space" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clN" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clP" = ( +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clS" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/closed/wall, +/area/tcommsat/computer) +"clU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/item/wrench, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/tcommsat/computer) +"clX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clY" = ( +/obj/item/beacon, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"clZ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cma" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Telecommunications Maintenance"; + req_access_txt = "61" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cmb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cmc" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cmd" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cme" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cmf" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/radio, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmg" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecomms Admin"; + departmentType = 5; + name = "Telecomms RC"; + pixel_y = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmh" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications Chamber"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmj" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmk" = ( +/obj/machinery/power/apc{ + areastring = "/area/tcommsat/computer"; + dir = 1; + name = "Telecomms Monitoring APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cml" = ( +/obj/machinery/announcement_system, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmm" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmn" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/office/dark, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cmr" = ( +/obj/structure/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cms" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmt" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Port"; + dir = 8; + network = list("tcomms") + }, +/turf/open/space, +/area/space/nearstation) +"cmu" = ( +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmv" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 1; + network = "tcommsat" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cmx" = ( +/obj/machinery/computer/telecomms/server{ + dir = 1; + network = "tcommsat" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmy" = ( +/obj/machinery/computer/message_monitor{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cmz" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Starboard"; + dir = 4; + network = list("tcomms") + }, +/turf/open/space, +/area/space/nearstation) +"cmB" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"cmF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cmG" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmH" = ( +/obj/machinery/telecomms/message_server, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmK" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cmL" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmM" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmN" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmO" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmP" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmQ" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmR" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cmU" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cmV" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmW" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmX" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmY" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cmZ" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cna" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnb" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnc" = ( +/obj/machinery/power/terminal, +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnd" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cne" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnj" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnk" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnl" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnm" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnn" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cno" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cnp" = ( +/obj/machinery/camera/preset/toxins{ + c_tag = "Bomb Testing Asteroid Aft"; + dir = 1 + }, +/turf/open/floor/plating/asteroid/airless, +/area/asteroid/nearstation/bomb_site) +"cnq" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/asteroid/nearstation/bomb_site) +"cnr" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cns" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cnt" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cnu" = ( +/obj/machinery/camera/motion{ + c_tag = "Telecomms Server Room"; + dir = 1; + network = list("tcomms") + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cnv" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cnw" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cnx" = ( +/obj/structure/table, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cny" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Port Aft"; + network = list("tcomms") + }, +/turf/open/space, +/area/space/nearstation) +"cnz" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Starboard Aft"; + network = list("tcomms") + }, +/turf/open/space, +/area/space/nearstation) +"cnC" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "AI Satellite turret control"; + pixel_x = -5; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cnD" = ( +/turf/open/space/basic, +/area/ai_monitored/turret_protected/AIsatextAP) +"cnE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/lattice, +/turf/open/space/basic, +/area/ai_monitored/turret_protected/AIsatextAP) +"cnG" = ( +/turf/open/space/basic, +/area/ai_monitored/turret_protected/AIsatextAS) +"cnH" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space/basic, +/area/ai_monitored/turret_protected/AIsatextAP) +"cnJ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnN" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/camera{ + c_tag = "Brig Equipment Room" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 29 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnP" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnQ" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnT" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnV" = ( +/obj/structure/punching_bag, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cnX" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cod" = ( +/obj/structure/table, +/obj/item/clothing/under/color/grey, +/obj/machinery/power/apc{ + dir = 1; + name = "Dormitory APC"; + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/dorms) +"coe" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Dormitory Maintenance APC"; + pixel_x = -24 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"coi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"coj" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"cok" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/chair/comfy{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"col" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/crew_quarters/dorms) +"com" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"con" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"coo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"cop" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"cor" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "public external airlock" + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"cos" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cot" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cou" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"coy" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Bridge"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/crew_quarters/bar) +"coG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"coH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/bar) +"coJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/bar) +"coL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"coN" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"coV" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"coW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"cpa" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/crew_quarters/bar) +"cpb" = ( +/obj/structure/table/glass, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/vermouth{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/drinks/bottle/kahlua{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/absinthe{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpc" = ( +/obj/machinery/chem_dispenser/drinks, +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Bar Drinks" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpe" = ( +/obj/machinery/door/airlock{ + name = "Bar Access"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpg" = ( +/obj/machinery/button/door{ + id = "barshutters"; + name = "Bar Lockdown"; + pixel_y = 26; + req_access_txt = "28" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cph" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpk" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 19 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpl" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpm" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/pie/cream, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpn" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/spaghetti, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpo" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpq" = ( +/obj/machinery/deepfryer, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpr" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cps" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpt" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpu" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cpw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpx" = ( +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "kitchenshutters"; + name = "Kitchen Shutters Control"; + pixel_x = 5; + pixel_y = -24; + req_access_txt = "28" + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/food_cart, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpz" = ( +/obj/structure/rack, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpA" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpB" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"cpC" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barshutters"; + name = "bar shutters" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"cpH" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpI" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpK" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpL" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpM" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpP" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpQ" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpT" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpU" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cpY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cpZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqd" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqe" = ( +/obj/effect/turf_decal/plaque, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Med"; + location = "Sci9" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqh" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqi" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqk" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cql" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqp" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division Hallway"; + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/department/engine) +"cqz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqE" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18"; + layer = 3 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cqH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/dock) +"cqS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"cqU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/space/basic, +/area/space/nearstation) +"cqV" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chief_engineer, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cqW" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"cqX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"crb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/chapel/office) +"cre" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"crg" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crh" = ( +/obj/machinery/button/crematorium{ + id = "foo"; + pixel_x = 25 + }, +/obj/structure/bodycontainer/crematorium{ + id = "foo" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cri" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "secure storage" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/engine/engineering) +"crj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crl" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"crm" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/open/space, +/area/space/nearstation) +"crt" = ( +/obj/structure/table/wood/fancy, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cru" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crv" = ( +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crx" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cry" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"crz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"crA" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"crB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"crC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"crD" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/box/bodybags, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crH" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Chapel Port"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crL" = ( +/obj/structure/chair/wood/normal, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/chapel/main/monastery) +"crM" = ( +/obj/structure/chair/wood/normal, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/chapel/main/monastery) +"crN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chapel Starboard"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"crT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "Chapel Office APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"crX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"crY" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/breadslice/plain, +/obj/item/reagent_containers/food/snacks/breadslice/plain{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/snacks/breadslice/plain{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csd" = ( +/turf/open/floor/carpet/black, +/area/chapel/office) +"cse" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csf" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csi" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csk" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csn" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + pixel_x = -32 + }, +/obj/structure/closet, +/obj/item/storage/backpack/cultpack, +/obj/item/clothing/head/nun_hood, +/obj/item/clothing/suit/chaplain/nun, +/obj/item/clothing/suit/chaplain/holidaypriest, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cso" = ( +/obj/structure/table/wood, +/obj/item/nullrod, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csp" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csq" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"css" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"csv" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csy" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"csB" = ( +/obj/effect/landmark/start/chaplain, +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csC" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/holywater{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/carpet/black, +/area/chapel/office) +"csE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"csM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Chapel Office Tunnel"; + dir = 1; + network = list("ss13","monastery") + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/chapel/office) +"csN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csS" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chapel Starboard Access"; + network = list("ss13","monastery") + }, +/obj/structure/chair/wood/normal, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"csU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/chapel/main/monastery) +"csY" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cta" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctb" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cte" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"ctg" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cth" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctu" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/mineral/iron, +/area/chapel/main/monastery) +"ctJ" = ( +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"ctK" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctL" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctN" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Monastery Cloister Fore"; + network = list("ss13","monastery") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"ctQ" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"ctS" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ctX" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/turf/open/floor/carpet, +/area/chapel/office) +"cuc" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Xenobiology Central"; + dir = 1; + network = list("ss13","rd") + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cui" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"cuk" = ( +/obj/structure/closet{ + name = "beekeeping wardrobe" + }, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/head/beekeeper_head, +/obj/item/melee/flyswatter, +/obj/item/melee/flyswatter, +/obj/item/melee/flyswatter, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cul" = ( +/obj/machinery/chem_master/condimaster, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cum" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cun" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuo" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cup" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/seeds/watermelon/holy, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cus" = ( +/obj/structure/closet{ + name = "beekeeping supplies" + }, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cut" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuu" = ( +/obj/item/storage/bag/plants, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/storage/bag/plants/portaseeder, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuv" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuw" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/kitchen/fork, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cux" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/tea, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuy" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Monastery Cloister Port"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuA" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/beebox, +/obj/item/queen_bee/bought, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuB" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuE" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/carrot, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuG" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuH" = ( +/obj/item/hatchet, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuI" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuJ" = ( +/obj/item/shovel/spade, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Monastery Dining Room"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuM" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Garden APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuO" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/sugarcane, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cuP" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuQ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/mineral/iron, +/area/chapel/main/monastery) +"cuR" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cuS" = ( +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuU" = ( +/obj/machinery/door/airlock{ + name = "Dining Room" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuV" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Garden" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuY" = ( +/obj/machinery/door/airlock{ + name = "Garden" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cuZ" = ( +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/chapel/main/monastery) +"cvb" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/wheat, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvd" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cve" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvf" = ( +/obj/machinery/recycler, +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cvg" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvh" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/poppy, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvi" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvj" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light/small, +/turf/open/floor/grass, +/area/hydroponics/garden/monastery) +"cvk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Monastery Cloister Starboard"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvq" = ( +/obj/machinery/camera{ + c_tag = "Monastery Secondary Dock"; + dir = 8; + network = list("ss13","monastery") + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Coffin Storage"; + req_one_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvs" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Coffin Storage"; + req_one_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvw" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvA" = ( +/obj/machinery/door/airlock/external{ + name = "Dock Access" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvB" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvC" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvE" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvH" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvI" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Monastery Cloister Aft"; + dir = 1; + network = list("ss13","monastery") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvJ" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvR" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Monastery Cemetary"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvS" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvT" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cvV" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cvX" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"cvY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"cvZ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"cwa" = ( +/turf/closed/wall/mineral/iron, +/area/maintenance/department/chapel/monastery) +"cwc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Monastery Maintenance"; + req_one_access_txt = "22;24;10;11;37" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwe" = ( +/turf/closed/wall/mineral/iron, +/area/library/lounge) +"cwg" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cwj" = ( +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cwl" = ( +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/item/storage/fancy/candle_box, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwm" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwo" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Monastery Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwr" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Library Lounge APC"; + pixel_x = 24 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cww" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwx" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/book/bible, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cwy" = ( +/obj/structure/table/wood/fancy, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/item/candle, +/obj/item/candle{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/candle{ + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"cwz" = ( +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwA" = ( +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwE" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwF" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + id = "chapelgun"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwK" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/library/lounge) +"cwM" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"cwO" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"cwR" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cwS" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"cwU" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cxe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library/lounge) +"cxg" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cxh" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cxk" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cxn" = ( +/obj/machinery/newscaster{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library/lounge) +"cxt" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cxz" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/library/lounge) +"cxC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxD" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall, +/area/library/lounge) +"cxJ" = ( +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/library/lounge) +"cxK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxM" = ( +/obj/structure/window/reinforced/fulltile, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/library/lounge) +"cxX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Monastery Archives Access Tunnel"; + dir = 4; + network = list("ss13","monastery") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cxY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cyl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cym" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cyy" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/closed/wall, +/area/library/lounge) +"cyz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cyA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"cyB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/library/lounge) +"cyL" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/closed/mineral, +/area/chapel/asteroid/monastery) +"cyM" = ( +/obj/structure/lattice, +/turf/closed/mineral, +/area/chapel/asteroid/monastery) +"cyP" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyQ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/camera{ + c_tag = "Monastery Archives Fore"; + network = list("ss13","monastery") + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyS" = ( +/obj/structure/bookcase/random/religion, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyT" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/library) +"cyU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/library) +"cyY" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cyZ" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/plasteel/dark, +/area/library) +"czl" = ( +/obj/structure/chair/wood/normal, +/turf/open/floor/carpet, +/area/library) +"czo" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czp" = ( +/obj/structure/table/wood, +/obj/item/disk/nuclear/fake, +/obj/item/barcodescanner, +/turf/open/floor/plasteel/dark, +/area/library) +"czq" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czr" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet, +/area/library) +"czt" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/photo_album, +/turf/open/floor/carpet, +/area/library) +"czu" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + layer = 2.9; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czv" = ( +/obj/structure/chair/wood/normal{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czw" = ( +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czB" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/carpet, +/area/library) +"czC" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lantern{ + icon_state = "lantern-on"; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/library) +"czD" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/library) +"czH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Monastery Archives Port"; + dir = 4; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czI" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/library) +"czL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/library) +"czM" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/library) +"czN" = ( +/obj/structure/table/wood, +/obj/item/storage/bag/books, +/turf/open/floor/plasteel/dark, +/area/library) +"czO" = ( +/obj/structure/table/wood, +/obj/item/instrument/saxophone, +/turf/open/floor/plasteel/dark, +/area/library) +"czP" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/coin/gold, +/turf/open/floor/plasteel/dark, +/area/library) +"czQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Monastery Archives Starboard"; + dir = 8; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czY" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"czZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAa" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAj" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Curator Desk Door"; + req_access_txt = "37" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAs" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants{ + icon_state = "plant-05"; + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAt" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAu" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/pharaoh, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAv" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAy" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Curator Desk Door"; + req_access_txt = "37" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/turf/open/floor/plasteel/dark, +/area/library) +"cAH" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAM" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAQ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cAS" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/turf/open/floor/plasteel/dark, +/area/library) +"cAT" = ( +/obj/structure/destructible/cult/tome, +/turf/open/floor/plasteel/dark, +/area/library) +"cAU" = ( +/obj/structure/rack{ + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "minibar"; + name = "skeletal minibar" + }, +/obj/item/book/codex_gigas, +/obj/machinery/camera{ + c_tag = "Monastery Archives Aft"; + dir = 1; + network = list("ss13","monastery") + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cAV" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cBi" = ( +/obj/machinery/flasher/portable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"cBk" = ( +/obj/machinery/vending/boozeomat/pubby_maint, +/turf/closed/wall, +/area/maintenance/department/crew_quarters/dorms) +"cBl" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBm" = ( +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBn" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBo" = ( +/obj/structure/table, +/obj/item/lighter, +/obj/structure/light_construct/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBp" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/gin{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBq" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBr" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"cBs" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"cBv" = ( +/obj/item/cigbutt/roach, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"cBw" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "supplybridge"; + name = "Space Bridge Control"; + pixel_y = 27 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "supplybridge"; + name = "Space Bridge Control"; + pixel_y = 27 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cBA" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBB" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"cBK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cBL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_one_access_txt = "12;45;5;9" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cBM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/office) +"cBR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"cBS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/engine/engineering) +"cBT" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"cBU" = ( +/turf/closed/wall/r_wall, +/area/gateway) +"cCl" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"cCt" = ( +/turf/open/floor/plasteel/white, +/area/science/lab) +"cCB" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cCF" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"cCH" = ( +/obj/effect/turf_decal/bot/left, +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"cCI" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"cCP" = ( +/obj/effect/turf_decal/bot/right, +/turf/open/floor/plasteel/white, +/area/engine/gravity_generator) +"cCR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/department/chapel/monastery) +"cCS" = ( +/obj/machinery/rnd/production/techfab/department/security, +/turf/open/floor/plasteel/dark, +/area/security/main) +"cCT" = ( +/obj/machinery/rnd/production/techfab/department/cargo, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cCU" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/tcomms{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCV" = ( +/obj/machinery/rnd/production/protolathe/department/engineering, +/turf/open/floor/plasteel, +/area/engine/engineering) +"cCW" = ( +/obj/machinery/vending/games, +/turf/open/floor/plasteel/dark, +/area/library) +"cCX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"cCY" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"cCZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"cDa" = ( +/turf/closed/wall, +/area/quartermaster/warehouse) +"cDB" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"cFB" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"cHS" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Firing Range" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"cJo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cKA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cKV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cLw" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"cOp" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cPy" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cPO" = ( +/obj/item/chair/stool, +/turf/open/floor/wood{ + icon_state = "wood-broken7" + }, +/area/maintenance/department/crew_quarters/dorms) +"cPT" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cSJ" = ( +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/sleeper"; + dir = 4; + name = "Treatment Center APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"cSK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 8; + freq = 1400; + location = "Research Division" + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"cXW" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cZt" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engine/supermatter) +"daY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal) +"dbi" = ( +/obj/machinery/vr_sleeper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"dci" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"dcL" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"deJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/gps/mining{ + gpstag = "MINE_PUB" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dgg" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dgj" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"dgz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dgI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"dhz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dir" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dkR" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"dmP" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dmT" = ( +/obj/machinery/shieldwallgen/xenobiologyaccess, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"dnS" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix Bypass" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"doo" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"dpa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"dpb" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"dpc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/chapel/main/monastery) +"dps" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/quartermaster/qm) +"dqw" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12; 55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dqG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"dqY" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"dse" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"dsv" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"dsz" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"dtm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"duF" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -2 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 2; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"duQ" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge Aft"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"dxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dye" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/departments/science{ + pixel_y = 32 + }, +/obj/item/kitchen/knife, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dym" = ( +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dAF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/science/mixing) +"dAG" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"dEy" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/reflector/double/anchored{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dFJ" = ( +/turf/open/floor/engine, +/area/engine/supermatter) +"dHr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/machinery/button/door{ + id = "engsm"; + name = "Radiation Shutters Control"; + pixel_y = 24; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"dHZ" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/obj/machinery/button/door{ + id = "chemistry_shutters"; + name = "Shutters Control"; + pixel_x = 26; + pixel_y = 4; + req_access_txt = "5; 33" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dJk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"dJm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Pit"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dKs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"dLY" = ( +/obj/structure/table, +/obj/item/assembly/igniter, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"dMB" = ( +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"dMG" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"dMI" = ( +/obj/item/clothing/suit/apron/surgical, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"dMO" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dNr" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dSp" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"dSr" = ( +/obj/item/chair, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"dTV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVI" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + layer = 2.4 + }, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/execution/transfer) +"dVJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/science) +"dWk" = ( +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dWp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"dYe" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"dZj" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible, +/obj/machinery/airalarm/engine{ + pixel_y = 22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"eaw" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"ebD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyer_shutters"; + name = "law office shutters" + }, +/turf/open/floor/plating, +/area/lawoffice) +"edl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"edJ" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eex" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/quartermaster/office) +"eeQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"efu" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"efU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"egK" = ( +/obj/structure/girder, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"ehM" = ( +/obj/effect/decal/remains/human, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"eiV" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ekU" = ( +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"elk" = ( +/obj/structure/chair/office/dark, +/turf/open/floor/wood, +/area/lawoffice) +"epj" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"epJ" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"epV" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/engineering) +"eqD" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/wood{ + icon_state = "wood-broken" + }, +/area/maintenance/department/crew_quarters/dorms) +"eta" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Supplies"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"euQ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"eyj" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/engineering) +"ezF" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/red, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ezJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"eAp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"eAH" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"eAZ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"eCw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"eCK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"eDC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"eEp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"eFj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"eFG" = ( +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8; + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "garbagestacked" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"eHI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"eIL" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"eLt" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"eMC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"eNc" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/structure/rack, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"eNq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"eNF" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/closed/wall, +/area/space/nearstation) +"eOZ" = ( +/obj/structure/closet, +/obj/item/clothing/suit/judgerobe, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ePU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"eQN" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"eQR" = ( +/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, +/turf/open/floor/engine, +/area/science/xenobiology) +"eQZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"eRp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eSB" = ( +/obj/machinery/computer/cryopod{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"eSL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/item/beacon, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"eVy" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"eWi" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"eXo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"eYr" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"eZA" = ( +/obj/item/stack/cable_coil/cut/random, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"fdQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"fdS" = ( +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Engineering Delivery"; + req_access_txt = "10" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Engineering" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"fef" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Menagerie"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ffJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"fgS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/opossum/poppy, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/engine) +"fhM" = ( +/obj/item/storage/secure/safe{ + pixel_x = -22 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"fjs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"fjD" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"fkH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Experimentation Lab Testing Zone"; + dir = 1; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/explab) +"fmh" = ( +/turf/open/floor/wood, +/area/maintenance/department/engine) +"fmL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"fmU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"fon" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"fow" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"fpT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"frj" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"ftp" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"ftW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fuP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/wood, +/area/lawoffice) +"fvb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fwe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fwl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"fwr" = ( +/obj/machinery/door/airlock/maintenance/abandoned, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fwI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"fxC" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"fym" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"fyF" = ( +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engine/supermatter) +"fyO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"fzu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/clothing/gloves/color/black, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"fAx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"fBt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"fBz" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"fBZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"fFv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"fIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms) +"fIN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"fIT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"fKj" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Mineral Room" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fLG" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fNv" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"fQf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"fRr" = ( +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"fRs" = ( +/turf/closed/wall, +/area/crew_quarters/heads/hor) +"fTY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"fUA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"fWv" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"fZK" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"gam" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Service Door"; + req_one_access_txt = "35;28" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenwindowshutters"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"gdJ" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/pen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"gdL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"geU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gfi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"ggg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"giI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/office) +"giO" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gjp" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gjq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gjv" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Space Loop In" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gjN" = ( +/obj/item/weldingtool, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gkR" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"gkS" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gkX" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Storage"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"glf" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"gmp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gmO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gmZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Access"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"gna" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/maintenance/department/crew_quarters/dorms) +"gnq" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/engine/engineering) +"gpC" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"gpI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"gue" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gvf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/secondary/exit/departure_lounge) +"gwn" = ( +/obj/structure/sign/warning{ + pixel_y = 32 + }, +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gxe" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/structure/light_construct/small{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"gxq" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"gxK" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gAG" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/lawoffice) +"gBb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"gDR" = ( +/obj/machinery/camera{ + c_tag = "Central Primary Hallway Escape"; + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gDZ" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"gEo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"gFo" = ( +/obj/structure/window/reinforced, +/obj/structure/table/glass, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28; + pixel_y = 3 + }, +/obj/machinery/button/door{ + id = "research_shutters_2"; + name = "Shutters Control Button"; + pixel_x = -28; + pixel_y = -7; + req_access_txt = "47" + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"gGy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gGA" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gHZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gIC" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gIG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"gKz" = ( +/obj/structure/table/wood, +/obj/item/kirbyplants{ + icon_state = "plant-22"; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"gKG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"gLF" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"gMm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/science/mixing) +"gMO" = ( +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gNv" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/stairs/right, +/area/maintenance/department/crew_quarters/dorms) +"gNG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "assistantshutters"; + name = "Tool Storage Shutters Control"; + pixel_y = 24; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gPV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/wood, +/area/lawoffice) +"gQf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"gQo" = ( +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"gSH" = ( +/turf/closed/wall, +/area/lawoffice) +"gSI" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"gUb" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"gVc" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/department/engine) +"gXg" = ( +/obj/item/extinguisher, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gXZ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 4; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"gYo" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"haA" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/item/clothing/glasses/welding, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"hbl" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine/vacuum, +/area/space) +"heC" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Science Maintenance APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"hfZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 32; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hgD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/department/science) +"hiw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"hiY" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci4"; + location = "Sci3" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hjk" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"hjD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"hka" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Atmospherics Console"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"hkQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hnu" = ( +/obj/machinery/button/door{ + id = "lawyer_shutters"; + name = "law office shutters control"; + pixel_x = 34; + pixel_y = -1; + req_access_txt = "38" + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/lawoffice) +"hon" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Gas to Filter" + }, +/turf/open/floor/engine, +/area/engine/engineering) +"hoS" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/engine/engineering) +"hqo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "assistantshutters"; + name = "Tool Storage Shutters Control"; + pixel_y = 24; + req_access_txt = "10" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hvW" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "containment blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"hwd" = ( +/obj/machinery/camera{ + c_tag = "Departure Lounge Port"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hwj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/security/execution/transfer) +"hxn" = ( +/obj/structure/chair, +/obj/item/clothing/glasses/regular, +/turf/open/floor/plating, +/area/maintenance/department/science) +"hxI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"hyh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"hzc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/wrench, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"hzd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"hDG" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxillary Base Construction"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"hEX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"hFp" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/chair, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"hFy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hGB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"hHr" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"hIZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hKp" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engine/supermatter) +"hMx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"hOx" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"hOz" = ( +/obj/item/weldingtool, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"hPN" = ( +/obj/structure/table/glass, +/obj/item/clothing/glasses/science, +/obj/machinery/button/door{ + id = "xenobiomain"; + name = "Containment Blast Doors"; + pixel_x = 28; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hPU" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/item/surgical_drapes, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"hQz" = ( +/obj/structure/closet/emcloset/anchored, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"hQC" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"hSt" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Gas to Cooling Loop" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"hSC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"hSM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"hTl" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"hUt" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"hUw" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"hUJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"hVx" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"hXt" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/science) +"hXK" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"hYe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"hZB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iab" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"ick" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"iej" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"igB" = ( +/obj/machinery/camera{ + c_tag = "Turbine Chamber"; + network = list("turbine") + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"igE" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenobio4"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ihj" = ( +/obj/item/clothing/suit/toggle/labcoat/science, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ihk" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ijF" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library) +"ijU" = ( +/obj/effect/spawner/lootdrop/organ_spawner, +/obj/structure/closet/crate, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"ikB" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ikO" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ilD" = ( +/obj/machinery/processor/slime, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ilE" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"imE" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ioj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + light_color = "#e8eaff" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"iop" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ioF" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"iqc" = ( +/turf/open/floor/plasteel/stairs/right, +/area/maintenance/department/crew_quarters/dorms) +"irM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"itl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/xenobio{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"iuM" = ( +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ivO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + weaponscheck = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"iwe" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"iyg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iyJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"izB" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms) +"izF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"iAx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering) +"iBJ" = ( +/obj/machinery/camera{ + c_tag = "Telecomms External Fore"; + dir = 1; + network = list("tcomms"); + start_active = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"iCe" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + target_pressure = 4500 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"iCs" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"iCV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plating, +/area/security/execution/transfer) +"iEQ" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iEU" = ( +/obj/effect/spawner/lootdrop/keg, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"iFI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/engine/engineering) +"iGJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone3) +"iJi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iKb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"iLh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/engineering) +"iLl" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"iLR" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"iPj" = ( +/obj/machinery/igniter{ + id = "xenoigniter"; + luminosity = 2 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"iPz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Test Lab"; + dir = 4; + network = list("xeno","rd") + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"iPH" = ( +/obj/machinery/vr_sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"iPO" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"iPU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"iSz" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iTF" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"iVJ" = ( +/obj/effect/spawner/lootdrop/organ_spawner, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"iWV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"iXx" = ( +/obj/machinery/light/small, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"jcT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jen" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jeq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"jgr" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library) +"jhk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jhD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"jjC" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/lawoffice) +"jrG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"jsf" = ( +/obj/item/toy/katana, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jsj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"jsD" = ( +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"jtf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"juw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"jvi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hos) +"jwe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"jxl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"jxK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jzz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"jzE" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"jAy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"jBh" = ( +/obj/structure/rack, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"jBn" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"jCv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"jDA" = ( +/obj/item/chair, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"jEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jFw" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jFO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet, +/area/library/lounge) +"jHP" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/bottle/tequila{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"jOB" = ( +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"jPf" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/kitchen/knife, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"jQh" = ( +/obj/item/stack/sheet/animalhide/xeno, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/science) +"jRG" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jSa" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/chapel/main/monastery) +"jTh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jTu" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"jTU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"jUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"jXh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"jXA" = ( +/obj/structure/table, +/obj/item/stack/ore/iron, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jXF" = ( +/obj/machinery/cryopod{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"jXV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jYe" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jYh" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Supply to Virology" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/engine) +"jZG" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/chemistry) +"kas" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engine/atmos) +"kaR" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"kfh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"kfM" = ( +/obj/structure/closet, +/obj/machinery/light/small, +/obj/item/storage/book/bible, +/obj/item/storage/book/bible, +/obj/item/storage/book/bible, +/turf/open/floor/carpet, +/area/chapel/office) +"kgR" = ( +/obj/structure/toilet/secret/low_loot{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"khk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"kjK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/AIsatextAP) +"kkk" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/crew_quarters/dorms) +"kkQ" = ( +/obj/machinery/vending/cola/pwr_game, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"klb" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/quartermaster/sorting) +"klo" = ( +/obj/structure/dresser, +/obj/structure/mirror{ + pixel_y = 30 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"klB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"klV" = ( +/obj/item/clothing/under/rank/civilian/clown/sexy, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"kmd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"kmn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"koz" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kpK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"krU" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"ksf" = ( +/obj/item/stack/tile/carpet, +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"kvj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kwm" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"kxj" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"kxs" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"kyv" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"kAa" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"kDf" = ( +/obj/machinery/light/small, +/turf/open/floor/carpet/black, +/area/chapel/office) +"kDJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"kDY" = ( +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"kEM" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kEW" = ( +/obj/machinery/smartfridge/disks{ + pixel_y = 2 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hydroponics) +"kFm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/tcommsat/computer) +"kFu" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"kFx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Law Office Maintenance"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"kFD" = ( +/obj/structure/closet/l3closet, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"kGe" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/sign/departments/holy{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"kIo" = ( +/obj/structure/table, +/obj/item/paper_bin{ + layer = 2.9 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"kIO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kJo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"kJw" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Firing Range Target" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"kKI" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"kNf" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + icon_state = "right"; + name = "Containment Pen #4"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"kPi" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"kQy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"kQZ" = ( +/obj/structure/closet, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c10, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"kRq" = ( +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"kRK" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/bz, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"kSb" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"kSF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"kSO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Port Emergency Storage" + }, +/turf/open/floor/plating, +/area/storage/emergency/port) +"kTj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"kTR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"kWQ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"kXx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main/monastery) +"kYM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lcU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lcZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/gateway) +"ldQ" = ( +/obj/structure/floodlight_frame, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lem" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/flasher{ + id = "executionflash"; + pixel_y = 25 + }, +/obj/machinery/igniter{ + id = "secigniter" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"lfx" = ( +/obj/structure/table, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"lhA" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"liR" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"lje" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"lms" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/department/engine) +"lnn" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"lnr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"loz" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"loL" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4; + filter_type = "n2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"lqc" = ( +/obj/item/toy/gun, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lqy" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"lrM" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"lxI" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/chapel/monastery) +"lzJ" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/carpet, +/area/chapel/office) +"lAf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"lAs" = ( +/turf/closed/wall, +/area/quartermaster/sorting) +"lAR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"lBP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lEn" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/window/reinforced, +/turf/open/space/basic, +/area/space/nearstation) +"lFh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"lGp" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"lGv" = ( +/obj/machinery/door/airlock/atmos/abandoned{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lGS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"lHc" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lHX" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lIr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lJr" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lJI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lKL" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Starboard Emergency Storage" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"lMU" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lNW" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lQn" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lQQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgespace"; + name = "bridge external shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"lQX" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lTC" = ( +/obj/item/shard, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lUO" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"lWy" = ( +/turf/open/floor/plating, +/area/maintenance/department/science) +"lWH" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"lWJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"lXb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Gas to Mix" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"lXc" = ( +/obj/structure/table, +/obj/item/clothing/head/beret, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"lXJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"mal" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"mau" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"maW" = ( +/obj/structure/table/glass, +/obj/item/weldingtool/mini, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"mbe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"mci" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plating, +/area/engine/engineering) +"mdL" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen{ + layer = 3.1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"meF" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"mfC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mgz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"mhl" = ( +/obj/machinery/power/emitter, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"mhn" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mhK" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"miw" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 1; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"mjn" = ( +/obj/machinery/jukebox, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"mjK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"mlr" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mmv" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Supplies"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"mnG" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"mpd" = ( +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engine/supermatter) +"mpy" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/blue, +/turf/open/floor/wood, +/area/lawoffice) +"mql" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"mqp" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"msX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/security/execution/transfer) +"mtu" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/reagent_containers/food/snacks/donut, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"mtI" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Xenobiology APC"; + pixel_x = -25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mvm" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "Starboard Solar APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"mwg" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/ammo_box/foambox, +/obj/item/ammo_box/foambox, +/obj/item/gun/ballistic/shotgun/toy, +/obj/item/gun/ballistic/shotgun/toy, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"mwG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"mxy" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow, +/turf/open/floor/plating, +/area/tcommsat/computer) +"myu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"mzl" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/plating, +/area/security/execution/transfer) +"mzE" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/science/storage) +"mzU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/department/engine) +"mCe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"mDW" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"mEu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"mES" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Surgical Room" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"mHy" = ( +/obj/item/storage/fancy/cigarettes/cigpack_shadyjims, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"mIa" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"mJp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mKc" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"mKk" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mLB" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/security/brig) +"mMz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"mQm" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"mSc" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/science) +"mTS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"mVM" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mXq" = ( +/obj/item/taperecorder, +/obj/item/cartridge/lawyer, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/lawoffice) +"mZE" = ( +/turf/open/space/basic, +/area/space/nearstation) +"naq" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"naS" = ( +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nbu" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/space) +"ncm" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"ndI" = ( +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"nev" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"new" = ( +/obj/structure/chair/wood/normal{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nfi" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"nfz" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nge" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"ngp" = ( +/obj/item/chair/stool, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"nih" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/costume, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"niy" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/cookie, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"nku" = ( +/obj/machinery/door/airlock/centcom{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"nnh" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/stack/spacecash/c10, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"noC" = ( +/obj/machinery/vending/kink, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"noM" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"npE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nqu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"nqV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"nsy" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/rods/fifty, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/construction/mining/aux_base"; + dir = 8; + name = "Auxillary Base Construction APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"nsD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"nsJ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ntj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"nuv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"nxT" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nyB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/central) +"nyO" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"nzD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"nAs" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"nAY" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"nBw" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"nBL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"nDo" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nDx" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"nEb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"nGi" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"nIm" = ( +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Test Chamber Monitor"; + network = list("xeno"); + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nIU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"nJI" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/sign/plaques/kiddie/perfect_drone{ + pixel_y = 32 + }, +/turf/open/floor/engine, +/area/science/explab) +"nKo" = ( +/obj/structure/lattice, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"nLl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nMG" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 26 + }, +/obj/machinery/camera/motion{ + c_tag = "Telecomms Monitoring"; + network = list("tcomms") + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"nNJ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nNN" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"nOY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"nPA" = ( +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"nQc" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nRM" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/engineering) +"nSj" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nSo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/lawoffice) +"nTr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nUQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engine/supermatter) +"nVU" = ( +/obj/item/spear, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nWP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nYb" = ( +/obj/structure/table_frame/wood, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"nYn" = ( +/obj/structure/sign/warning/docking, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"nZw" = ( +/obj/machinery/door/airlock/abandoned{ + name = "Backup Laboratory" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"obj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"obP" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/department/science) +"odM" = ( +/obj/effect/landmark/barthpot, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library/lounge) +"oep" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ofN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ofX" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ohR" = ( +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"olc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Bedroom"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"onX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "assistantshutters"; + name = "storage shutters" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"ooh" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/wrench/medical, +/turf/open/floor/engine, +/area/medical/chemistry) +"opz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"ore" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/engine/engineering) +"ost" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ous" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_y = -24; + req_access_txt = "11" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ouv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ovB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"ovM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Port Fore" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"owS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"oxw" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/engineering) +"oyF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/storage/primary) +"ozO" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oAw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"oAW" = ( +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oBb" = ( +/obj/structure/sign/warning/biohazard, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"oCn" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet, +/area/lawoffice) +"oCX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"oDP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"oEA" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"oEG" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/circuitboard/computer/operating, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"oEW" = ( +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_y = -2; + req_access_txt = "55" + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/button/ignition{ + id = "xenoigniter"; + pixel_y = 7 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"oFf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"oFo" = ( +/obj/structure/closet/emcloset/anchored, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"oFI" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/blood/old, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"oGw" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/disposal/incinerator) +"oHa" = ( +/obj/machinery/power/emitter/anchored{ + dir = 8; + state = 2 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/engineering) +"oKa" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"oKv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/engine/engineering) +"oKJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"oLR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/exit/departure_lounge) +"oMN" = ( +/turf/open/floor/plasteel/stairs/left, +/area/maintenance/department/crew_quarters/dorms) +"oNE" = ( +/obj/structure/chair/office/light, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"oPx" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"oPy" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock) +"oQm" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "commonmining_home"; + name = "SS13: Common Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/meta; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"oRX" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"oSc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"oSL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"oTl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"oTp" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"oTC" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/cola, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"oUa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"oWu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/engineering) +"oWw" = ( +/obj/item/flashlight, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oXe" = ( +/obj/structure/table/glass, +/obj/item/mmi, +/obj/item/clothing/mask/balaclava, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/execution/transfer) +"oXq" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Cooling Loop Bypass" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"oYj" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"oZW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"paU" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/engine/engineering) +"pbm" = ( +/obj/machinery/door/airlock/external{ + name = "Pod Docking Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/chapel/dock) +"pbI" = ( +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/explab) +"pbR" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"pdq" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"pdW" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/science/explab) +"peE" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"pfz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"pfB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/armory) +"pfP" = ( +/obj/structure/table, +/obj/item/storage/box/syringes, +/obj/machinery/camera{ + c_tag = "Xenobiology Computers"; + dir = 4; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"pgH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"phJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"phS" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"pia" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"pjH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"pkM" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "22" + }, +/turf/open/floor/plating, +/area/chapel/office) +"plA" = ( +/obj/structure/musician/piano, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"pmB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2 to Pure" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"pnU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"poP" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"pps" = ( +/turf/closed/wall, +/area/engine/break_room) +"ppQ" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"pqP" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"prQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter) +"psd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Filter" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engine/supermatter) +"puw" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"pvK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"pwj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"pwS" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"pxD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/chemistry) +"pzF" = ( +/mob/living/simple_animal/opossum, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"pBD" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"pBJ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"pCo" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"pDP" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"pEH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"pEL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"pFe" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"pFy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pGe" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"pHo" = ( +/obj/machinery/computer/bounty{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/heads/hop) +"pKd" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"pMG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"pNy" = ( +/obj/structure/closet/firecloset, +/obj/machinery/camera{ + c_tag = "Toxins Launch Area"; + network = list("ss13","rd") + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"pOr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"pQw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/virology) +"pVD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/department/engine) +"pWm" = ( +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"pWF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"pWT" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"pXc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/carpet, +/area/library) +"pXg" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/item/extinguisher{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/extinguisher, +/obj/machinery/light, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"pXT" = ( +/obj/item/kirbyplants, +/obj/machinery/power/apc{ + areastring = "/area/lawoffice"; + dir = 8; + name = "Law Office APC"; + pixel_x = -24 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"pYh" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"pYw" = ( +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"pYC" = ( +/obj/structure/sign/warning{ + pixel_y = -32 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/maintenance/department/engine) +"qar" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"qbp" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"qbZ" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"qcD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qcH" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/pen, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qdi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Containment Pen Access"; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"qdj" = ( +/obj/structure/disposalpipe/segment, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qeY" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"qhE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qjx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"qkM" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"qni" = ( +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/surgery) +"qnT" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qpd" = ( +/obj/machinery/atmospherics/pipe/manifold/green/visible{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"qpS" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qtA" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"qtF" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qtO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qxq" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Air Out" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"qyF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qAM" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"qBv" = ( +/obj/item/clothing/head/ushanka, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qDJ" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_circuit_printer, +/obj/item/integrated_electronics/debugger, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"qEN" = ( +/obj/machinery/rnd/production/techfab/department/service, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/closed/wall, +/area/crew_quarters/bar) +"qFu" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qGu" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"qGZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "ce_privacy"; + name = "Privacy shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"qHI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"qIC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"qIO" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qLI" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + layer = 4 + }, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"qMi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"qOE" = ( +/turf/open/floor/plasteel/dark, +/area/library/lounge) +"qOH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qPB" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"qRl" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 29 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"qRm" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"qTV" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qUw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qVk" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/space/basic, +/area/maintenance/disposal/incinerator) +"qVP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qWo" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/chapel/monastery) +"qWG" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/engine/engineering) +"qWM" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -2 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"qXq" = ( +/obj/machinery/door/airlock/maintenance/abandoned, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qXH" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qYi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qYq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/item/wrench, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qYS" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"rar" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"rdB" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"reH" = ( +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"reV" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rgn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rgs" = ( +/obj/structure/table, +/obj/item/instrument/eguitar, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"rhr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/wood{ + icon_state = "wood-broken4" + }, +/area/maintenance/department/engine) +"riF" = ( +/obj/machinery/computer/arcade, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"riW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"rjF" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"rmC" = ( +/turf/open/space/basic, +/area/space/station_ruins) +"rnr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"rnE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"roc" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ros" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + heat_capacity = 1e+006 + }, +/area/chapel/dock) +"rrb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"rrU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"rse" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rsZ" = ( +/obj/machinery/camera/motion{ + c_tag = "Telecomms External Access"; + dir = 1; + network = list("tcomms") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"rui" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small{ + dir = 8; + light_color = "#d8b1b1" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rvH" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + dir = 4; + freq = 1400; + location = "Medbay" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Medbay Delivery"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"rxa" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"rxQ" = ( +/obj/machinery/door/airlock/abandoned{ + id_tag = "PottySci"; + name = "Science Bathroom" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rxV" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"rzp" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/rods/fifty, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"rzF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/chapel/asteroid/monastery) +"rBh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/science) +"rEh" = ( +/obj/structure/table/glass, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rFq" = ( +/obj/structure/chair, +/obj/item/reagent_containers/food/snacks/donkpocket, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"rHA" = ( +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"rJg" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/engine) +"rJZ" = ( +/obj/docking_port/stationary{ + area_type = /area/construction/mining/aux_base; + dheight = 4; + dwidth = 4; + height = 9; + id = "aux_base_zone"; + name = "aux base zone"; + roundstart_template = /datum/map_template/shuttle/aux_base/small; + width = 9 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"rKr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"rKL" = ( +/obj/item/trash/cheesie, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"rLi" = ( +/obj/machinery/button/door{ + id = "shootshut"; + name = "shutters control"; + pixel_x = 28 + }, +/obj/item/ammo_casing/shotgun/improvised, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"rMV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/department/engine) +"rNi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/pipedispenser/disposal/transit_tube, +/turf/open/floor/plasteel, +/area/engine/atmos) +"rNB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rPg" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"rPW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing) +"rSH" = ( +/obj/item/trash/can, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"rTd" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"rWE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"rXT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rYC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "public external airlock" + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"sbk" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"sbY" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/lawoffice) +"sci" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/science) +"scp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Auxillary Base Maintenance"; + req_access_txt = "12"; + req_one_access_txt = "32;47;48" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"scz" = ( +/obj/machinery/power/apc/highcap/fifteen_k{ + dir = 8; + name = "Engineering APC"; + pixel_x = -28 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"sdk" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Armory External"; + dir = 1 + }, +/turf/open/space, +/area/space/nearstation) +"sgc" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"shH" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"sij" = ( +/obj/structure/closet, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sjC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel, +/area/engine/engineering) +"skw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"slJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"smv" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Cooling Loop to Gas" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"spz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sqh" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"sqQ" = ( +/turf/open/floor/plating, +/area/maintenance/disposal) +"srZ" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ssx" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"stQ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/sign/departments/science{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sut" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"svA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"svN" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/sign/departments/restroom{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"swg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"sww" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/reagent_containers/food/snacks/meat/slab/monkey, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"syn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/security/brig) +"syQ" = ( +/obj/machinery/vending/games, +/obj/structure/sign/plaques/deempisi{ + pixel_y = 28 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"szG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"sAK" = ( +/obj/item/clothing/mask/gas/plaguedoctor, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sBA" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"sEB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sEN" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"sGr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"sIK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"sJp" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/security/execution/transfer) +"sJr" = ( +/turf/open/floor/wood, +/area/lawoffice) +"sKa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"sNz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"sOC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"sQt" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"sUP" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"sWj" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"sWW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"sXi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sXR" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"sYQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sZh" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/disposal) +"sZu" = ( +/obj/item/storage/backpack/satchel/explorer, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tan" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/centcom{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"tap" = ( +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"taA" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"taT" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 4; + name = "euthanization chamber freezer" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tcY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"tdp" = ( +/obj/structure/rack, +/obj/item/stack/packageWrap, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/hand_labeler, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"tdB" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"tdL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/supermatter) +"tfw" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tfx" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tfP" = ( +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/xenobiology) +"tfZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"thA" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"thW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"tim" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Testing Lab Maintenance"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/explab) +"tix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"tkL" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"tlc" = ( +/obj/machinery/recharger, +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"tlp" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tlw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"tlN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"tlV" = ( +/obj/structure/reflector/single/anchored{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/engineering) +"tnP" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"tnY" = ( +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_x = -26; + req_one_access_txt = "32;47;48" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"tpb" = ( +/obj/item/reagent_containers/food/snacks/donut, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"tqO" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tqX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"ttS" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/mob/living/simple_animal/pet/bumbles, +/turf/open/floor/plasteel, +/area/hydroponics) +"tue" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tuy" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Test Chamber"; + dir = 8; + network = list("xeno","rd") + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"tvj" = ( +/obj/structure/festivus{ + anchored = 1; + desc = "A pole for dancing."; + name = "pole" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"tvP" = ( +/obj/item/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"twv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"typ" = ( +/obj/structure/table/glass, +/obj/item/hemostat, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"tyL" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"tzH" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/lab) +"tAK" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"tCP" = ( +/obj/docking_port/stationary/public_mining_dock, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"tDn" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"tHk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/sign/directions/evac{ + pixel_x = 32; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tIS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"tJr" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters_2"; + name = "research shutters" + }, +/turf/open/floor/plasteel, +/area/science/lab) +"tLP" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/quartermaster/warehouse) +"tOD" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"tRc" = ( +/obj/structure/ore_box, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/engine) +"tSL" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"tTl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tTZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"tXn" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"uaC" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/maintenance/department/crew_quarters/dorms) +"uaE" = ( +/obj/effect/decal/cleanable/oil{ + icon_state = "floor6" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"uaO" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"uaP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ubW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing) +"udl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"uek" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ueP" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/button/door{ + id = "xenobiomain"; + name = "Containment Blast Doors"; + pixel_x = 28; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ueV" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"ueX" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_construction, +/turf/open/floor/plasteel, +/area/engine/engineering) +"ufa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ugC" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"uiP" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"ujI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ukn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/engine) +"ukp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Gas" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"ulu" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"ulY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"ume" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"uoj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"uos" = ( +/obj/machinery/computer/camera_advanced/base_construction, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"uoS" = ( +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"upc" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uqJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/transfer) +"urP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/explab) +"utg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"uug" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/science) +"uun" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"uuS" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"uvo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"uvq" = ( +/obj/structure/table, +/obj/item/dice/d20, +/turf/open/floor/plating, +/area/maintenance/department/science) +"uwb" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"uwX" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uxP" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Starboard"; + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"uzh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/engine, +/area/engine/supermatter) +"uzn" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"uAU" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/carpet, +/area/lawoffice) +"uAZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Experimentation Lab Mixing Area"; + network = list("ss13","rd") + }, +/turf/open/floor/engine, +/area/science/explab) +"uCS" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"uHG" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uIn" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uIB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering) +"uLF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"uMe" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uMo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/plasteel, +/area/engine/engineering) +"uMt" = ( +/obj/effect/turf_decal/plaque, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uQR" = ( +/obj/item/ammo_casing/shotgun/beanbag, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"uRk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"uUQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uVf" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/pen/fountain, +/obj/item/stamp/law, +/turf/open/floor/carpet, +/area/lawoffice) +"uXG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"uXH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard) +"uZb" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"vay" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"vco" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"veF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"veM" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"vgp" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"vhk" = ( +/obj/structure/chair, +/turf/open/floor/carpet, +/area/lawoffice) +"vjd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"vli" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/machinery/light, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engineering) +"vlC" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"vlF" = ( +/obj/item/coin/silver, +/obj/effect/decal/cleanable/oil{ + icon_state = "floor5" + }, +/obj/structure/light_construct/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"vmG" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/analyzer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"vmY" = ( +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"voh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"vsk" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"vsw" = ( +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Starboard"; + dir = 8; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"vsJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"vtl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vtT" = ( +/turf/open/floor/plating, +/area/maintenance/solars/port) +"vuP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/emergency/starboard) +"vuQ" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vxp" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/item/assembly/mousetrap, +/turf/open/floor/engine, +/area/science/explab) +"vxr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"vzz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness/recreation) +"vzA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vzP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"vzT" = ( +/obj/structure/table, +/obj/item/stack/rods{ + amount = 5; + layer = 3.3 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/assembly/prox_sensor{ + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"vAq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"vBE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"vCC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"vGg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"vHf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vIc" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"vKq" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vMx" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"vOw" = ( +/obj/machinery/door/airlock/grunge{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/library) +"vRi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/science) +"vRm" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering Port Storage" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"vTL" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"vTN" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"vVO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"vYN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"wbB" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "External Gas to Loop" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/engineering) +"wbF" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/machinery/camera{ + c_tag = "Engineering Starboard Aft"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"wcs" = ( +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"wdx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 6 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"weL" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wfc" = ( +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/maintenance/department/science) +"wfs" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"wfG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hor) +"wfO" = ( +/mob/living/simple_animal/hostile/retaliate/poison/snake, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wfP" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"wig" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"wiB" = ( +/obj/item/shard{ + icon_state = "small" + }, +/obj/item/stack/cable_coil/red, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wjm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"wjQ" = ( +/obj/machinery/computer/shuttle/mining/common{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"wkZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"wlK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"wnJ" = ( +/obj/structure/sign/warning, +/turf/closed/wall, +/area/science/mixing) +"woq" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wqu" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"wrU" = ( +/obj/machinery/photocopier, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/wood, +/area/lawoffice) +"wtE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wun" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wwr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wwG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wxb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"wxJ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "prison release"; + name = "prisoner processing blast door" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wzb" = ( +/obj/structure/chair, +/turf/open/floor/wood, +/area/maintenance/department/engine) +"wAI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"wBb" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"wBg" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "Potty1"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"wDl" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engine/engineering) +"wDm" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wDZ" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"wEn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"wFT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"wIo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"wIv" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + name = "Engineering Maintenance APC"; + pixel_x = -25; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wKa" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"wLo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "cmoshutters"; + name = "Privacy shutters" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"wMF" = ( +/obj/effect/spawner/lootdrop/three_course_meal, +/obj/effect/spawner/lootdrop/three_course_meal, +/obj/structure/closet/crate, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/crew_quarters/dorms) +"wMM" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wMX" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/supermatter) +"wNq" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wOa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wOf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"wOS" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/mixing) +"wQU" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/department/cargo) +"wRk" = ( +/obj/structure/rack, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wRz" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/security/brig) +"wRI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Brig Maintenance APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wTD" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/clothing/glasses/sunglasses, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 27 + }, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"wTO" = ( +/obj/structure/frame/computer, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/science) +"wUf" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/storage/emergency/port) +"wUz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"wVC" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Sci"; + location = "Bar1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wXu" = ( +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"wYu" = ( +/obj/machinery/door/poddoor/shutters{ + id = "shootshut" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"wYK" = ( +/obj/machinery/power/supermatter_crystal/engine, +/turf/open/floor/engine, +/area/engine/supermatter) +"xah" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/cargo) +"xaO" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xaQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 29 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"xbJ" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/department/crew_quarters/dorms) +"xee" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"xer" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"xeB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/lawoffice) +"xgh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"xgG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"xhj" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/carpet, +/area/library/lounge) +"xhE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"xhI" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/engineering) +"xja" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Library APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/library) +"xjc" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/library) +"xje" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xjg" = ( +/mob/living/simple_animal/hostile/retaliate/goose, +/turf/open/floor/wood, +/area/maintenance/department/crew_quarters/dorms) +"xjK" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = -27 + }, +/obj/structure/rack, +/obj/item/taperecorder, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"xjT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xlg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xlA" = ( +/obj/machinery/door/airlock/maintenance/abandoned, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xmp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"xmE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) +"xnm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/tcommsat/computer) +"xnP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"xpr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xpD" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xsO" = ( +/obj/item/ectoplasm, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xuv" = ( +/obj/item/broken_bottle, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"xvO" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xxw" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xxO" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Containment Pen #2"; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"xxS" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"xyl" = ( +/obj/structure/table, +/obj/item/assembly/timer, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"xyB" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/security/brig) +"xzp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xzR" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"xCV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xDj" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xEx" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/science/storage) +"xFl" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/tcommsat/server"; + dir = 1; + layer = 4; + name = "Telecomms Server APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"xGc" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space/station_ruins) +"xIx" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"xJy" = ( +/obj/structure/chair/comfy/black, +/obj/structure/sign/plaques/kiddie{ + desc = "An embossed piece of paper from the Third University of Harvard."; + name = "\improper 'Diploma' frame"; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/wood, +/area/lawoffice) +"xKc" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"xLi" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"xLC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"xNx" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/junction/flip, +/turf/open/space/basic, +/area/space/nearstation) +"xNy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/engineering) +"xOC" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"xPa" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/airalarm{ + pixel_y = 22 + }, +/turf/open/floor/engine, +/area/science/explab) +"xQc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/door/airlock{ + name = "Port Emergency Storage" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/freezer, +/area/storage/emergency/port) +"xQk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"xSd" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/chapel/monastery) +"xSX" = ( +/obj/machinery/airalarm/unlocked{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"xSZ" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"xVt" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/structure/rack, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"xWl" = ( +/obj/item/pen, +/obj/item/paper_bin{ + layer = 2.9 + }, +/obj/structure/table/glass, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"xYV" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel/monastery) +"ybX" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"ycr" = ( +/obj/structure/target_stake, +/obj/item/target/syndicate, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"ycx" = ( +/turf/open/floor/wood{ + icon_state = "wood-broken5" + }, +/area/maintenance/department/engine) +"ydf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"yfO" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ygZ" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/department/cargo) +"ymb" = ( +/obj/machinery/camera{ + c_tag = "Engineering Telecomms Access"; + dir = 8; + network = list("tcomms") + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engine/engineering) (1,1,1) = {" -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabyabyabyabyabyabyabyabyabyabyabyabyabyaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaaaaabIaaaaaaaaaaaaabJaaaaaaaaaaaaabIaaaaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyabIabOabOabOabOabOabOabOabOabOabOabOabOabOabIabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOabVabWabXabYabYabYabYabYabVabWabXabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOaccacdaceaceaceacfaceaceaceacdacgabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOachaceaceabOabOabOabOabOaceaceaciabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOabYaceabOabOabOabOabOabOabOaceabYabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyabIabOabWaceabOabOacjackaclabOabOaceabWabOabIabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyacmabOacnacoacpacpacqacracsactactaceacuabOacvabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabyaaaabOacwacxabOabOabOacyabOabOabOaceacwabOaaaabyaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaabOabYacxabOabOabOabOabOabOabOaceabYabOaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaabOabVaczacAabOabOabOabOabOaceaceabXabOaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyabIabOaccacdacxacBacCacDacEacBaceacdacgabOacFabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaabOacGacHacIacJacKacLabYacMachacwaciabOacNaaaacOaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPacPacQacPacPabOacRacSacTabOacUacUacUacUacVaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIacPacWacXacYacPacZadaadbadcaddacUadeadfadgacVabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPadhadiadjacPadkadladmadnadoacUadpadqadracVaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPadsadtaduadvadwadxadyadzadAadBadCadDadEadFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadGadHadIadJadKadLadLadMadLadLadNadOadPadQacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSadTadUadVadWadVadXadYadXadZaeaadZaebaecacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadRadRadRadRadRadRadRadRadRadRadRaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIadSaeeaefadVaegadVaehaeiaehadZaejadZaekaelacUabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaaaabIaaaabIaaaabIaaaabIaaaaaaabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSaeeaefcnDcnEcnDaehaeiaehcnGcnHcnGaekaelacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaadRaemaemaenaemaenaemaenaemaemaemaemaemaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaadSaeeaefadVaegadVaehaeiaehadZaejadZaekaelacUaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeoaepaeqaeraesaetaeuagyaeWaeXaemadRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaacOaaaaaaadSaevaewadVaexadVadXaeyadXadZaezadZaeAaeBacUaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeCaeDaeEaeFaeGaeHtnPagyovBiLRaemabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyabIacPaeJkjKaeKaeLaeMaeNaeNaeOaeNaePaeQaeRadFaeSacUacUabIabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaemaeTaeUaeUaeUaeVpeEdYelGputgiPHaemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaacPaeYaeZafaafbafcafdafeaffafgafhafiafjafkaflafmacUaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadRadRadRadRadRabIaemafnaeUafoafpafqafoaeHaeUafriPHaemaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaabyaaaacPaftafuafvacPacPafwafxafyafzafAacUacUaelaelafBacUaaaabyaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahtahtahtahtabIaemagyafCafDafEafFafGafHafIagyagyaemaaaaaaaaaaaaaaaaaaaaaaaaaaaafJaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaabyaaaacPafKafLafMacPafNafOafxaabafzafQafRacUafSafSafTacUaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafUafUafUafUafUafXaiAafZaeUagaaeUagbaeUaeHaeUagcagdaemaaaaaaaaaaaaaaaabyabyabyabyabyabyabyabyabyabyabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaabyabIacPacPacPacPacPageagfcnCbIKaggagfaghacUacUacUacUacUabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagiszGlemagjafUaglaiAagnaeUagaaeUagbeSBaeHjXFagoagpaemaaaaaaaaaaaaaaaabIaaaaaaaaaaaaabIaaaaaaaaaaaaabIaaaaaaaaaaaaaaaaaarmCrmCrmCxGcrmCrmCaaaaaaaaaaaaaaaabIaaaabIaaaagqagragsadXagtadXagsaguagqaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagisOCmzlagvagwagxaiAagyagyagzagyagAagyagBagyagyagCaemaaaaaaaaaaaaaaaagPagPagQagQagQagPagQagQagQagPagPaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaabyabyabyabyabyaaaadXadXadXadXagDadXadXagEadXaaaabyabyabyabyabyaaaaaaaaaaaaaiSaiTaiUaiTaiTaiSaiSaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagiiCVsJpagFafUagHaiAagyagIaieagKagAagLagMagNagyagOaemabyabyabyabyabyagQcnJahdahdahdcnNahdcnPcnQcnQagQabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXadXagRadXadXagSabIaaaaaaaaaaaaaaaaaaaaaaiSaiTaiSaiScBkjHPkkkcBlaiSwMFaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtafUafUmsXqMiagTafUagVaiAagyagWaiHagYagAagZahaagYagyahbaemabIabIabIabIabIagQahqahqahqahqahqahqahqahqahqagQabIaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXadXahhadXadXagSabIaaaaaaaaaaaaaaaaaaaaaaiTplAqPBaiSjhDajuakhcBmakgcBnaiSaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtafUhwjdVIiPUahjahkahlaiAagyagAahmagyahnahoahpagyagyagyaemabIabIsdkabIabIagPahqahqcnTahqcnTahqahqcnVahqagQabIaaaafJaaaaaaaaarmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadXalbahialbadXahsahtaaaaaaaaaaaaaaaaaaaaaaiSoMNiqcaiScBoajtalccBpaiScBqaiTaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaadRahtpfzahuahvahwahxahyahzahAahBahCahDahBahFahGahHahIahJahKahLahLahLahLahLahLahLahMahNahqahqahqahqahOahPahQagPabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaFjahRahtaaaaaaaaaaaaaaaaaaaaaaiTakfngpepJalQalQalRalSaiSajvaiTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtahtuqJahSahTahUahVahWahXahYahZaiaaibaicaicaidaieaifaigaihahLaiiaijaikailaimahLainaioahdahdahdaipaiqairaisagPabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiSgxecBruaCxjgmnGamFamGakgajvaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitaitaitaiuaitaiuafUoXeaivaiwaixaiyaizaiAaiBaiCaiDaiEaiFaiGaiHaiBaiJaiKahLaiLaiMaiMaiNaiOahLaiPagPagPagPagPagPaiQagPagPagPabIabIabIabIabIaiRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiTakfcBscBvcBwtappzFmnGaiSiEUaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitaiVaiWaiXaiYaiuafUafUafUafUaiZajaajbaiAajcajcajcagyajdajeajfagyagyagyahLajgaiMajhajiajjahLajkajlajmajnajoajpajqagPajrajsajsajsajsajsajsajsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahsahtaaaaaaaaaaaaaaaaaaaaaaiSeqDtapcBwnoCtaptapcPOaiSaiSaiSaiTajxajyajyajyajzaiTaiSaiTaiSaiSaiSaiSaiSaiSaiSaiTaiTaiSaiSaiSaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaitajBajCajDajEaiuajFajGajGajHajHajIajHaiAajMajMajMajMajJajKajLajMajNajOahLajPajQajRajSajTahLajUajVajWajWajXajYajZagPaiRaiRakaakbakcakdakeajsaiRaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahRahtaaaaaaaaaaaaaaaaaaaaaaiToMNgnagNvaiSaiSanmaiSaiSakjcBxaklakmaknakoaknakkakpcByaknaknaknaknaknaknaknaknaknaknaknaknaaDaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuakrajDaksaktaiuakuakvakwajHakxakyakzakAakBakCakDakEakFakGakHakIakJakKahLakLakMakNakOakPahLakQajVajVajVajVajVakRcCSakTakUakVakWakXakXakXakZabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtalaahtaaaaaaaaaaaaaaaaaaaaaaiSvlFklVnnhaiSanYajvaiSaobaleaiSaiTalfalgalgalgalhaiTaiSajvaaEaaGaaFaaFaaFaaFaaFajvaaQsbkajvaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiualiaiuaiuaiualjalkallajHalmalnaloalpalqalralsaltalualvalwalxalyalzahLcBijuwivOpfBalAahLalBalCalDalEalCalFalGalHaiRalIalJalKalLalJalMalNabIaaaaaaaaaaaaaaaaaaaaaahtahtahtahtahtahtahtahtahtahtahtahtahtalOahtahtaaaaaaaaaaaaaaaaaaaaaaiTtvjxbJsqhaiSaptajvaiSeawaleaiSaaaaaaaaaaaaaaaaaaaaaaaFaaHaaFaaFaaFaaIaaKaaIaaFaaFaaFaaFaaFaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaitajDaitaaaaiualTalUalVajHalWalXalYakAalZamaambamcamdameamfamgamgamgamgamhamiamjamkamlamgammamnamoampamnamqamramsamtamuamvamwamxamyamzalNabIaaaaaaaaaaaaaaaaaaaaaamAamBamCamCamCamBamCamCamCamCamBamCamDahtaaaahtaaaaaaaaaaaaaaaaaaaaaaiSaiTaiSaiTaiSsbkajuaiSajvaleaiSaaaaaaaaaaaaaaaaaaaaaaaFaaNaaRaaSaaSaaSaaSaaSaaTaaUaaVaaXaaFaleaiSaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuaiuaiuaiuaiuahtahtaitajDaitaaaaiuskwamHtfZajHamIamJamKakAamLamMamNamOamPamQamRamgamSamTamUamVamWamXamYamZamganbalCancandalCaneanfalHaiRanganhanianjalJankalNabIaaaaaaaaaaaaaaaaaaanlahtahtahtahtahtahtahtahtahtahtahtahtahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiSaiSajvaiSajvaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabcaaLaaLabjaaLaaLaaLaaLaaLaaMaaZaaFaleaiTaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaitfINoFflcUaiuaiuaiuaiuanqaiuaiuaiuanransvCCantanuanvanwakAanxakAajMajManyanzanAanBanCanDanEanFanGanHanIanJanKanLalEanMandalEanNanOanPanQanRanSjvianUanVanTanWabIaaaaaaaaaaaaaaaanlaaaahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaacBUlcZcBUlcZcBUaaaaaaaiTalPcBAaiScnXaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabmaaOabnaaOaboaaOaaOaaOaaOaaPaaZaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaoIaoHaoHaoHaoJaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaitwwGycrsGrkJwgwnwRIlMUaoehOxaCgaCgaofePUlHcaiuaogaohaohaoiaojakAaokaolaomaonaooamgaopamXamXamWamXaoqaoramXaosaotaouaouaovaowaoxaoyagPaiRaiRaiRaiRaiRaiRajsajsaozaozaaaaaaahtalOahtahtahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaalcZapWaoBapUlcZaaaaaaaiScBBaiSaiSaiSaleaiTaaaaaaaaaaaaaaaaaaaaaaaJabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabkaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaoIaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaitgGywDmhiwaiuaiuajDapBaiuaDmaiuaiuaiuaiuaiuaiuaiuaiuaiuaiuaiuakAaoOaoPaomaonanaaoQaoRaoSaoTaoUaoVaoWaoXaoYaoZapaapbapbapcapdapeapfapgaphaphapiaphapjapkaplapmapnahrcdmahtapoaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaahtaaaaaaaaaaaaaaaappahtabIabIabIabIlcZapVaprapVlcZaaaaaaaiSapuaknaknapvapwaiSaaaaaaaaaaaaaaaaaaaaaaaFabqaaOaaOaaOabraaOaaOaaOabsabtabpaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaqbaqcaaaaqaaqbaqcaaaaqaaqbaqdaaaaqaaqbaqdaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaiuwYuwYuwYuaiuapzajDwoqapBaDmaiuaqgaqhaqiaiuaaaaaaaaaaaaaaaaaaapEapFapGakFapHaooamgapJapJapKapLapJapMapIamgamgagPagPagQapPagQagPajMajMajMajMajMajMajMapQaozapRaozaozcdmapSabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaaaaaaaapTapTapTapTapTapTapTapUapVapWcBUaaaaaaaiSaleapXapXapXapXapXapXaaaaaaaaaaaaaaaaaFaaFabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabuaaFabvaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuuQRajDajDaiuaqeajDlXcaiuaDmaiugjNlqcardaiuaaaaaaaaaaaaaaaaaaapEapEajMaomaqmaqnaqoapNaqqaqraqsaqtaquapOsBAaqvaqwaqxaqpaqyaqzaqAajMaqBaqCaqDaqCaqCajMaqEaqFaqGaqGaqGaqGalaaqHaqIaqIaqIaqJaqIaqIaqIaqJaqIaqIaqIaqKaaaaaaaaaaaaaaaapTaqLaqMaqNaqOaqPapTaqQaqRaqScBUcBUaaaaiSaleapXaqTaqUaqVcodapXaaaaaaaqYaaaaaaaaFabwabmaaOaaOaaOaaOaaOaaOaaOaaOaaPabxaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaituaEajDjsfaiuaoKaoKnPAaiuaoLwRzarcaoeasraitaaaaaaaaaaaaaaaaaaariwxJarjarkaonarlalvaonaonarlaonarmarnaroarparoarparqarparrarsartaruarvarwarxaryarzajMaqEarAarBarCarDarEarFarGarHarIarJarKarLarMarNarOarParQarRarGaaaahiahiahiaaaapTarSarTarUarVarWapTarXarYarZasacBUahtaiSasbascasdaseasfasgapXapXashasiasjapXaaFabzabAaaWaaWaaWabBabCaaWaaWaaWabDabEabFabGaiTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaitpdqajDajDcHSdcLaBaegKaiuasoaiuatpatqatpaitaaaaaaaaaaaaaaaaaaapEapEajMasuasvaswasxatyatBawKaszrdBasAjenasBjxKtTZasDasEasCasyasFasGasHasIasJasKasLajMaqEarAasMasNasOarAarAasPasQasRasRasSasRasRasRasSasRasRasTasUarAatYbaHatYaaaapTasVasWasXasYasZapTataatbatcatdcBUaaaaiScoeatfatgathatiatjapXapXashatkatlapXaaFabHabTaaFaaYaaYatnatnavmavmavmatnatnaaFaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaitajDajDrLiaiuapBxyBaBaaoKasoaiuausautauuaiuaaaaaaaaaaaaaaaaaabBWbBWajMatvatwatxajMatzatAatDajMatzatCatDajMatEatFatGajMajMatHajMajMatIaqCaqCaqCatJajMatKarAatLatMatNatOatPatQatRatSasSatTatTatUatTatTasSatVatWatXarAbcNauVatYahtapTauaaubaucaudaueapTaufaugauhauicBUahtapXapXapXaujapXaukapXapXaulashizBaumapXatnablabKabbabaawBatnauraurauraurauratnaiSaleaiSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCajArmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaiudcimwgtlcaiuaiuaiuaiuaiurrbaiuaiuaiuaiuaiuaaaaaaaaaaaaaaaaaaapEajMakAauxaonauzajMauxauAauzajMauxauAauzajMauBalvauCauDauEauFauGauHauIauHauHauHauHajMauJarAauKauLauKauMauNauOauPauQasSauRauRauRauRauRasSauSatWauTarAauUauVatYaaaapTauWauXauYauZapTapTavacBUavbavccBUaaaavdaveavfavgatfavhaviavjavkavkavkavkavlatnaxwabLabdaxwabeavmauraurauraurauravmatnavnatnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqdaaaaqaaraaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyahtaiuaiuaiuaiuaiutpbaAaazZazYoPxsynwxbgiOekUaiuaaaaaaaaaaaaaaaavpavqavrakAavsavtavuajMavvavwavxajMavyavzavAajMavBalvauCavCavDavEavFavGavHavIavJavKauHavLaqEavMavNavOavPavQavRavSavTavUasSavVavWavXavYavZasSawaatWawbarAatYawcatYaaaaaaawdaweawfawgawhawiawjawkawlawmawdaaaavdawnawoawpawqawrawsawtawuawvawvawvfIuawwabgabMabhabgabiavmauraurauraurauravmawCawDatnabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoHaoIaoHaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqcaaaaqaaraaqcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtahtahtahtaxCaxCaxCaxCaxCaxCaxCaxCaDmaiuaiuaaaaaaaaaaaaaaaaaaapEawHakAawIawJrjFakAawIawJrjFakAawIawJrjFakAawLawMawNakAawOawPawQawRawRauHawSauHauHauHawTawRawUawVawWawWawXawYawZaxaasSaxbaxbaxbaxbaxbasSaxcaxdaxearAlQQaxgaxhahtahtaxiaxjaxkaxlaxkaxkaxmaxnawdawdaxiahtapXapXapXapXapXaxocoiaxpaxqaxraxtaxuepjaxvaxwabPabQaxwaxwaxyaurauraurauraurvzzaxzaxAavmaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaaaaoIaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaayyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxBaxBayzaxBayAayBayCaxCxuvkJoasraitaaaaaaaaaaaaaaaaaaajMaxEajMaxFaxGaxGaxHaxGaxGaxGaxIaxGaxGaxGaxJaxKaxGaxLaxJaxGaxGaxGaxMawRaxNaxOaxPaxQauHaxRaxSaxTaxUaxVaxWawUaxXaxYaxZayaaybaybaybaybaybayaaycaxYaydayeayfaygaxhaaaaaaaaaaaaaaaaaaabIawdayhaxnabIabIaaaaaaayiayjaykaylatfaymaBQaynayoayqcojaysaIhaytayuabRabSaxwaxwavmauraurauraurauravmaywayxavmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoIazGazHazHazIazJazKazKazKazKazKazKazKazKazKazKazKazKazKazKazLazHazHazHazHazHazHazHazHazHazHazHazHazHrKrazNazNhzdazPazQazRazSazNfAxtyLaitaaaaaaaaaaaaaaaaaaaiuayEayFayLayGayHayIayLayLayJayLayLayLayLayLayMayNayOaxGaxGayPayQayRawRaySayTayUayVayWayXayYayZazaazbazcawRazdazeazfazgazhaziazjazkazhazlazmaznazoarAlQQazpaxhaaaaaaaaaaaaabIaxiawdawdazqaxnawdaxiaaaaaaayiazrazsaztazuawraDfazvazxazycokazAazAazBazCazCazDaxwaxwavmauraurauraurauravmazEazFavmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaaaaoIaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxBaxBaxBaxBaAWaAXaAYaxCvtTaDmajDaiuaaaaaaaaaaaaaaaaaaaiuaAbaAcaAdpFyaAeaAfaAiaAiaAgaAhaAiaAiaAiaAiaAjaAkaAlaAmaAmaAnaxGaAoawRaApaAqaAraAsauHaAtaAuaAvaAwaAxaAyawRaAzaAAaABaABaABaABaACaABaABaABaABaADaAEaAFaAFaAGaAHaAHaAHaAHaAHaAHaAHaAIaAJaAKaALaAMaANaaaaaaapXapXapXapXapXaAOaDfcolaAPaAQayravkdbiaxvaxwaxwaASaxwaxwaxyaurauraurauraurvzzaATaAUavmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaoHaoHaoIaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxCaxCaxCaxCaxCvtTaDmnPAaiuaiuaiuaiuaiuebDebDgSHebDxLCebDaiuaBcaBdaBdaBdaBeaBfaBeaBdaBdaBdaBgaxGaBhaBiaBiaBiaBiaBiaBjaBjaBjaBjaBjawRaBkaBlaBmaBnaBoaBpawRaBqaBraABaBsaBtaBuaBvaBwaBxaBsaABaBraByaAHaBzaBAaBBaBCaBDaBEaBFaBGaAHaBHaBIaBJaALaBKawdaaaaaaaBLaBMaBNaBOatfaBPaBQaBRavkavkaBSavkdbiaxvaBTaBUaataBWaBXavmauraurauraurauravmaBYaBZatnabIabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiuaDmmtuaiuaCdnyOawEaiusbYaCexJyjjCxeBaCfaiuaChaBdaCiaCjaCkaClaCmaCnaCoaBdaCpaCqaBhaBiaCraCsaCtaCuaCvaCwvTLaCxgkRawRaCyaCzaCAaCBaCBaCCaCDaCEaCFaABaCGaCHaCIaCJaCKaCLaCMaCNaxZaCOaAHaCPaCQaCRaCSaCSaCSaCTaCUaCVaCWaCXaCYaCZaDaawdaaaaaaaBLaDbaDcaDdaDecomconcooaDgaDhaDiaDjaDkatnatnatnatnatnatnavmauraurauraurauravmatnaDlatnabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuapBaDmaCcaiuhHrezJqGukFxfuPgPVsJreEpnSohnuaiueQZaBdaDoaDpaDqaDraCkaDtaCkaBdaDuaxGaDvaBiaDwaDxaDyaDzaDzaDAaDAoyFaDBawRaDCaDDaDEaDEaDFaDGaDHaDIaDJaABaDKaCKaDLaDMaDLaCKaDNaABaDOaDPaDQaDRaDSaDTaDUaDVaDWaDXaDYaAHaDZaBIaEaaALaEbaANaaaaaaapXapXapXapXapXapXcopapXaEcaEdaEdaEeaEdaEdaEfaEgaEhaEdaEiatnauraurauraurauratnaEjaEkaEjaEjaEjaElaElaEjahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaiuaDmaiuaiuhHrujIeOZaiupXTpELsJrvhkuuSjTuaiueQZaBdxjKaEmaEnaEoaEpaEqaEraBdaEsaxGaBhaBiaEtaEuaDAaDAaDAaDyaEvoyFaEwawRaExazaaEyaEzaEAaBmawRaEBaECaABaEDaEEaEFaEGaEHaEEaEIaABaEJaEKaAHaELpHoaEMaENaEOaEPaEQaERaAHaANaESaEaaALaAMaANaaaaaaaEToFoaETaEUaFFaETaEWaGVaEYaEdaEZaFaaFbaEdaFcaFdaFeaEdaEdatnatnatnatnatnatnatnaFfaEkaEjaFgaFhaFiaFibZVahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaitaBamLBwxbaCgaCgdgIkQZaiuwrUelksJrgAGuAUwTDaiuaFkaBdfhMaFmaFmaFoaFmaFpaGaaBdaFraxGaBhaBiaFsaFtaDAaDAaDAaDAaFuoyFaFvawRaFwazaaFxaFxaFyaFzawRaEBaDJaABaABaABaABaABaABaABaABaABaDOaEKaAHaAHaAHaFAaAHaAHaFAaFBaAHaAHaFCaBIaEaaALaFDawdaaaaaarYCjOBcoraFEvuPlKLkIOaDZcotaEdaEZaFGaFHaFIaFIaFJaFIaFKaFLaFMaEdaFNaFOaFPaFQaEjhUtaEkaEjaFRaEjaEjaEjaEjahiaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaitoTCwUzwigaiuezFujInihaiumpymXqsJrkxjoCnuVfaiuaFUaFVaFWaFnaFXaFYnBwaFngQoaBdaGbaGcaGdaBiaGecouaGfaGgaGhaGilnnaGjuluawRawRawRawRaGkaGlaGmawRaEBaAAarAaGnaGoaGpaGqaGraGsaGnarAaAAaEKaxiaGtaGuaGvaGwaGwaGvaGxaGyaANaGzaBIaEaaALaDaawdaaaaaaaETqbZaETaGAaGBaETaGCaGDaBIaEdaEZaGFaGGaGHaGFaGFaGFaEdaGIaGJaEdaGKaGLaGMaGNaEjaFiaEkaEjaGOaGPaEjaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaqaaCaaqdaaaaoIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiuaitaitaitaiuaodujIkxsaiuaiuaiuaiuaiuaiuaiuaiueQZoEAoEAoEAoEAoEAoEAoEAoEAoEAaGUaGVtHkaBiaGXaGYaGXaBiaBiaBiaGZonXaGXaANaHbaHcawRawRawRawRawRaHdmyuarAaxiaHfaHfaHfaHfaHfaxiarAaHeaHgaxiaANaHhaHiaHjaHjaHkaHlaANaANaANaEYaHmaGUaANaANawdawdaETaETaETaHnaETaETcosaDZaBIaEdaEdaGFaHoaEdaHpaEdaHqaEdaHraGJaEdaHsaHtaFiaGNaEjaFiaEkaHuaFiaEjaEjaEjaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaqaaIraqcaaaaqaaIraqcaaaaqaaIraqcaaaaqaaIraqcaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaiuaqgiJiqGugKGguejhkjhkoTpjhkjhkaHCgjqoEAuoSuoSuoSuoSuoSuoSuoSoEAaHEaHFaHGhqoaHHaHIaHHaHJaHKaHLaHMqXHjYegNGjYeaHOaHPaHQaHRaHQaHSaHTaHUaHVaHWaHXaHXaHYaHXaHXaHZaHVaHUaIaaIbaHVaHVaHVaHVaHVaHVaHVaHVaIcaIdaHGaIeaCZaIfaIgaHNaHNaHNaHNhFyaIiaHNaHNcoyaDZaBIaIjaEdaGFaIkaEdaIlaEdaIlaEdaEdaDlaEdaEjaEjbfuaEjaEjaFiaEkaEjaGOaIpaIqaElaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaaaaoIaaaaaaaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNahtaaaaiuaiuaiuaiuaiuaICaiuaiuaiuaiuaiuaIHaiuoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaILaIMaDZaDZaINaIOaIOaIOaIPaIQaIOaIOaIOaIQaIPaIOaIOaIRaIOaISaITaIVaIOaIOaIWaIWaIXaIWaIYaDZaDZaIZaJaaJbaDZaDZaDZaDZaDZaDZaDZaDZaGVaDZaBIaJcaJdaJeaJfaIUaIUaIUaIUaJhaJiaIUaIUaJjaJkaJlaJmaJnaFIaJoaEdaEdaEdaEdaEdaJpaEkaEjaJqaJraJsaJtaJsaJsaJvaEjaFiaEjaJwaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaoHaoIaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoHaoJaoHaoHaoHaoIaoHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaHziabxaQrgsaJDpvKgxqniyaJFriFaiuofXiSzoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaDZaJGaJHaJIaJJaJIaJIaJIaJKaJLaJIaJIaJMaJLaJKaJNaJOaJPaJOaJOaJQaJSaJOaJOcozcozcoBcozcozaJOaJOaJTaJQaJUaJOaJVaJOaJWaJRaJOaJVaJOaJPaJRaJXaJYaJZaKaaKbaJIaJHaJIaJIbheaKeaJIaJIaJIaJHaKfaKgaEdaKhaGFaKiaKjaEdaKkcCXcCYcCZaEjaKnaEjaKoaFiaKpaFiaKnaKqaFiaEjaKraEjaLnaLmaLmaLoaLoaLmaLmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaKAfmUjeqjeqaKDaKEaKEaKGxhEaiuaiuaIHoEAuoSuoSuoSrJZuoSuoSuoSoEAaALaDZaKIaKJaKKaKLaKKaKJaKMaKNaKOaKPaKQaKQaKRaKSaKQaKTaKTaKTaKTaKTaKUaKTaANaKVaKVaKVaKVaKVaANaKTaKYaKZaLaaKZaLbaKZaKYanXaLcaLdaLcanXanXaBIaEaaALaLeaLeaLeaLelAslAslAsklblAslAslAslAslAscDaaEdaEdaEdaEdaEdaEdaLhcDaaLiaLjaKqaKnaLkaLlaFiaFiaFiaKnaEjaEjaEjaEjaLmaNTaLmaMEaMFaMGaMHaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKyaKzdqGwquaKBaOkwOapGepGegmOpGepGegvfftWsgcaiuaIHoEAuoSuoSuoSuoSuoSuoSuoSoEAaALaDZaLvaLwaLxaLyaLzaKJaLAaLBaLCaLDaKQaLEaLFaLGaKQaLHaLIaPzaLKaKTaNjaKTaGnabIabIabIabIabIaGnaKTaKYaLQaLRaLSaLTaLUaLVaLWaLXaLYaLZaMaanXaMbaEaaMcaLeaMdaMeaMflAsaMgaMhaMiaMjaMkaMlaMmaMnaMoaMpaMqaMraMsaMtaMuaMvcDaaMwaMxaJsaMyaLkaMzaEjaMAaFiaMBaJsaJsaMCaMDaLmxeraNUeFGaNVaNXaNYaLoabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxeeaHAaHAaHAnYnaJEqUwaQtaQuaQtaQuaQtkvjaJEnDxaiuaIHoEAuoSuoSuoSuoSuoSuoSuoSoEAaMRaMSaMTaMUaMVaMWaMXaKJaMYaMZaNaaNbaKQaNcaNdaNeaKQaNfaNgaLLaNhaKTaNiaKTaKTaKTaKTaKTaKTaKTaKTaKTaKYaNpaNqaNraNsaNtaLVaNuaNvaNwaNxaNyaNzaNAaJYaNBaNCaNDaNEaNFiKbaNHaNIaNJaNKaNLaNMlAslAscDaaNNaNOaNOaNOaNPaNOaNQcDaaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaEjaNRaPfaLmaQophSphSphSphSaPiaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKyaKzaKzwquaKBaWExSZaOfaOgaOhaOgaOfaOkcoNgLFaiuaOmoEAuoSuoSuoStCPuoSuoSuoSoEAaALaDZaKIaKKaOtaOuaOvaKJaKPaKPaKPaKPaKQaKQwBgaKQaKQaKTaKTaOwaKTaKTaOxaOycoFcoGcoHcoHcoJcoJaOzaOAaKYaOBaNqaOCaNsaODaLVaOEaOFaOGaOHaOIaOJaOKaOLaOMaONaOOaOPaOQaORaOSfwlfwlfwlaOUdseaOWaOXcDaaOYaOZaPaaPbaPbaPcaNOcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaNRaQjaQkaPgdqYdqYcvfxeraQpaLoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaWEwOaxLiaWKaWKaWKaPoaWEaPqaHzaiuaIHoEAoEAaPtaPtxOCaPtaPtoEAoEAaALaDZaPwaKJaKJaKJaKJaKJaNmaPxaPyaPzaLLaLLaLLaPAaLLaLLaPBaLLaPCaPDaNjaLLaPEaPEaPEaPEaPEaPEaPFaPGaKYaPHaPIaPJaPKaPLaLVaPMaPNaPOaPPaPQanXaMbaPRaPSaLeaPTaPUaPViKbaPXdMBaPZdMBaQaaQblAslAscDaaQcaQdaNOaQeaNOaQfaQgcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaRsaRtaRuaRvaRwaQnaRyaRzaLmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabyabyabyabyaedabyabyabyabyabyabyabyabyabyabyabyaedabyabyabyabIaedaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaHAwwraQvaQraRDaREaRFnGiaJEklBeLtaiuaIHayDoEAnsyuosjAyaQwaQxoEAaKHaHEaQBaQCaQDaKTaQEaQFaQGaQGaQHaQIaQJaQKaQLaQMaQNaQNaQOaQPaQPaQPaQQaQRaLLaPEaQSaQTaQUaQVaPEaQWaQXaKYaQYaQZaRaaRbaRcaKYanXanXanXanXanXanXaRdaPRaReaLeaRfaRgaRflAsaRhaRiaRjdMBaRkaRllAsaRmcDaaRnaRoaRpcDaaNPaRqaNPcoLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaLiaLmsrZsZhsqQsqQaSndaYaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaedaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaHAhwdeApaQraSvaSwaSxnGiaRCklBaRBaiujThvIcscpeDCxnPrHAeHIaRGoEAaLuaALaPRaKIaRIaKTaRJaRKaRLaRLaRMaRLaRLaRLaRLaRLaRNaRNaROaRNaRNaRNaRNaRNaRPaPEaRQaRRaRSaRTaRUaRVaRWaKYaKYaKYaRXaKYaKYaKYaPBaRYaRZaSaaSbaKTaMbaPRaMcaPWaScaSdaSclAsaSeaSflAsiKbaSgaShlAsaLgaLgaSiaSjaSkcDatLPcDacDacDaaLgaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaNRaSlaLmaLmaLmaLmaSmaSnaSoaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaaTCaTDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaHAwwraJEaQraTKaTLaTMnGiaQsklBaRBaiuaSuxxSoEAtnYqjxffJyfOqWMoEAaLuaALaPRaKIcoVaKTaSzaRLaRLaSAaSBaSCaauaSEaSFaSGaRNaRNaSHaRNaSIaSJaSKaSLaSMaPEaSNaSOaSPaSQaPEaSRaSScoWcoWcoWaSTaQNaQNaQNaQNaQNaQNaQNaSVaSWaSXaPRaHEaSYaSZaTaaSZaTbaTcaTdaTeaTfaTgaTheeQaTiwDZaTkaTlaTmaTnaTqaTpaTqaTraTsaTraaaaaaaaaaaaaaaaaaaaaaaaaaaaElaTuaTvaTwaTxaTxaTyaTzaTAaTBaLmabIaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaOkftWoLRaMLaMLaMLaPnaTJhkQaOsaiuaiuvAqoEAuCSiPOoEAhDGoEAoEAaRHaTOaPRaTPaKTaKTaSzaRLaRLaTQaTRaTSaTTaTUaXSaTWaRNaTXaTYaTZaSKaSKaUaaRNaUbaPEaUcaUdaSPaUeaPEaPEaUgaPEaPEaPEaPEaPEaPEaPEaUfaUfaUfaUfaNjaKTaUiaUjaUkaUlaOTaOTaUmaOTaOTaUnaUoaUpaUqaUraUsaUtaUuaUvaUwaUtaUxaSkaSkaSkaUyaUzsQtaUAaaaaaaaaaaaaaaaaaaaaaaaaaEjaUBaGOaUCaEjaEjaEjaEjaEjaEjaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabIaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTHaKyaKzaKzwquaKBaOkcoNpGepGegmOpGepGevsJftWfUAwEnnfiuLFdpamalpOrdpaaUGaUHaUIaUJaUKaULaUMaUNaUOaUPaUQaURaUSaUTaUUaXSaXUaXSaUWaRNaUXaUYaSKaUZaVaaVbaRNaVcqENaPEaVdaPEcpaaPEaPEaVfaVgaVhaVicpbcpcaVjaPEaVkaVlaVmaUfaVnaUfaVoaJIaJZaUsaVpaVqaVpaVpaVpaVraVsaVtaVuaVvaLfaVwaVxaVyaTmaVzaVAaTmaTmaVBaPdaPdaPdaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaElaEjaVEaEjaavaEjaVGaVHaVIaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxeeaHAaHAaHAnYnaJEkvjaQtaQuaQtaQuaQtaVNaJEaVMaPvaJEaVOdTVdTVgeUdTVaVPdTVaQzaVQxvOwunaVRaVSaVSaVTaVUaVSaRLaRLaRLaRLaVVaRLaRLaRNaVWaVXaSKaSKaVYaVZaWaaWbbdvaWdaWeaWfaWgaWhcpeaWiaWjbahbahbahaWlaWmaPEaWnaWoaWpaWqaWraUfaMbaDZaMcaPWaWsaWtaWuaWuaWuaWuaWvaVtaPYaWweexaWxaVxaWyaTmaWzaTmaTmaTmaWAaUyaWBsQtaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaEjaUCaEjaFiaHuaFiaFiaFiaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqICaKzwKawqufTYaWEftWaOfaOfgpCaOfaOfcJofwexmpfBtaWFaWFaWFaWIaWJaWFaWJaWFfBtnyBaCZaEaaKIaVSaWMaWNaWOaVSaWPaWQaWQaWRaWSaWTkEWaRNaRNaRNaRNaWUaWVaWWaRNaWXaWYaXbaXbaXbaXcaXdaPEmjnbahbahaXhbahbeBbckaPEaXkaXlaXmaXnaXoaXpaXqaHNaXraLfaPWaXsaXtaXuaPWaLfaLfaVtaPYaXvaLfaXwaVxaXxaTmaVzaTmaTmcCBaXyaXzaXAaXzaaaaaaaaaaaaaaaaaaaaaaaaaaaccsaEjaEjaUCaEjaFiaEjaFiaXCaXCaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaHAaHAaHAaHAxeeaWKppQaWKduQppQaWKaWKppQaWKaOsaHzaXFaXGkAaaXKaXKaXIaXJaXIaXKaXBaGUaHmaXLaXMaXNaXOaXPaVSaXQaXRaXSaXTaXUaXVaXWaXXaXYaXZaRNaRNaYaaRNaRNaYbaRNaRNaRNaPEaPEaYdaPEaYeaYfaYgaYgaYgaYhaYiaPEaYjaUfaYkaYlaYmaUfaMbaDZaMcaLfaYnaYoaYpaYqaYraYsaPWaVtaPYaYuaLfaYvaYwaYxaYyaYzaTjaYyaYAaYBaLgaLgaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjaZvaTxaZwaYCaFiaEjaYDaYEaYFaElaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaaTCaUDaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaYGaXHaYHaYIfowaYJaYKaXIaALaEaaYLaVSaVSaYMaVSaVSaYNaXSaYOaYOaYPaXSaXSaXSaXSaYQbgkaYRaYSbcerxVaYVaYUaYTaYXaYYcpgaYZaZaaZbaZccphaZdcpicpjcpkaZfaZgaUfaUfaUfaUfaUfaZhaDZaZiaLfaZjaVuaPYaPYaOVaZkaZlaZmaZnaOTaUlaZoaZpaZqaZoaZoaZraZsaZtcCTaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaUCaFiaEjbaGbaGbaGbaGbaGbaGbaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaaTCaUDbaIaaaabyabIabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZyaZyaZyaZzaZAovMaZAaZAaZAaZAaZAaZCaZDaZEaXHaZFaZGaZHaZIaZJaZKaZLaZMaZNaVSaZOaZPaZQaVSaZRaZSaZTaZUaZVaZWaZXaXSaXSaXSgamaYSaYSaYSaYScplbabbacbadbaebahbagbahbagbahbagbeBbagbahbagbahbanaPEbaobapbaqaPEbaraDZaMcaLfbasbatbaubavbawbaxaPWaPYaPYaPYbazaTmaZtbaAbaBbaCbaDbaEaZpbaFaLgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaElaUCaGOaEjcfQbbLbbMrWErWEsutrWEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaaaaabbPaaaaaacFBabIcFBabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbaJbaKbaKbaKbaKbaLbaKbaMbaNbaNbaNbaNbaObaPaXHbaQbaRbaSbaTbaUaXIaALbaVbaWaXMbaXbaYbaZaVSaYNbbaaZTbbbbbcaXSbbdpWTpWTttSaZZaYSbbgcpmcpnbcfbbibaabblbbmbagcpobagbbrbbobbpbbqbbrbbsbbpbagbbtbbubbvbbwbbxaPEaMbbbybbzaLfaLfaLfaLfaLfbbAaLfaLfbbBbbCbbDaLfbbEbbFbbGbbHbbIbbIbbJbbKbbIbbIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEjbcHbcIhSMbcJbcKbcLuXHoCXoCXatZbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcQbcRbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcSbcTbcUbcQbcQbcVabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxjzzbbQaZxbbRbaKbbSaZxbbQjzzbbRbaKbbTbbUaXHaXHaXIbbVaXIaXKaXKaALaEaaKIbbWbbXaZPbbYaVSaYNaZSaZTbbZbbcbcaaRLbcbbccbcdaRNcpqcprbcgbchcpsbbhbaabblbaebahcptbahbbrbcobbpabUbbrbcqbbpbahbcrbcsbctbcubcvbcwaSXaDZaMcaEjbcxbcyaFiaFibczaFiaLfaLfaLfaLfaLfbbEbcAbcBbcCbbIbcDbcEbcFbcGbbIaaaaaaaaaaaaaaaaaaaaaaEjaElaEjaElaEjaUCaFiaEjmvmbdRbdSrWErWErWErWEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaaaaabdUaaaaaacFBabIcFBabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbcXaZxbcYbcZbdaaZxbcXaZxbbRbaKbbTbdbbdcbddbdebbTbaKbdfaGVaALaEaaKIbbWbdgbdhbdiaVSaYNaXSbdjbdkbdlaXSbdmbdnaDZbdoaRNcpubcfbdpbdqaYSbdrbaabblbcmbagcpvbdwbdvbdwbdvbdxbahbagbahbagbckbagbahbagbahbdyaMbaDZaPSaEjbdzqAMaFijBhbdBbdCbdCbdDbdCbdDbdEbbEbdFbdGbdHbdIbdJbdKbdLbdMbbIaaaaaaaaaaaaaaaaaaaaaaEjbdQaTxaTxaTxaZwaFiaEjbaGbaGbaGbaGbaGbaGbaGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyabIabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbdVaZxaZxaZxaZxaZxbdVjzzaYGaYGbbTbdWbdXbdYbaKbdZbeabdfaGVaALaEabebaVSbecbedbeeaVSaXQbefbegbehbeibejbekbelbembenbeocpwbeqberbesbepcpxbeubblbaebexbagbeybezbeAbagbeBbagbeCbeDbeEbeFbeGaZeaXbbeHaPEaBIaDZaALaEjaFiaEjbeIbeIbeIbeIbeIbeIbeIbeIbczbbEbeJbeKbeLbdIbeMbeNbeObePbdIbdIbdIaaaaaaaaaaaaaaaaEjbeRaEjaFiaFibeSaFikIoaEjbfPkKIeZAvzTdsvaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGbeYbeZbfabfbbaNbfcbfdbfebffbfgbfhaKIaVSbfiaVSaVSaVSbfjbfkbflbflbfmbfnbdmbdnaDZbfoaRNbfpcpycpzcpAcpBaRNbgkaRNcpCbfraPEcpCcpCaPEbfsbftbfsaPEcpCcpCaPEaPEbdybdyaPEaPEaEYaGVaGUaEjbfuaEjbeIbfvbfwbfxbfybfzbfAbeIbczbbEbfBbfCbfDbdIbfEbfFbfGbfHbfIbfJoPybfKaaaaaaaaaaaaaEjaUCaKqaFiaFiaFibfMbfNaEjbfPaFitDngUbdLYaEjaaaaaaaaaaaaabNaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbfYbfZbfZbgabgbbgcbgdbgdaALaEabgebgfbggbghbgiaawbdmbdmbdmbdmbgjbdmaRLkEMaDZbfoaRNbgkbglbgkbgkbgkaRNbgnbgobgpbgqbgrbgsbgpaPEbgtbgubgtaPEbgvbgwbgxbgybdobdobgzaDZbgAaDZaALbgBaDZbgCbgDbgEbgFbgGbgHbgIbgJbeIbczbbEdpsbbEbbEbbIbgKbgLbgMbfHbdIbdIbdIaaaaaaaaaaaaaaaaEjaUCaEjaEjaEjaEjaEjaEjaEjaEjhOzaFiaFixylaEjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgSaZxbbTbfYbgabgUbgVbgWbgXbgYbgaaALbgZbhabhbbhcaJIaJIaJIaJIbhdaJIaJIbheaJIbhdaJIaJIaJZaJIaJIbheaJIaJIaJIaJIaJIbhdaJIaJIaJIaJIbhfaJIbhdaJZaJIbhgaJIaJIaJIaJIaJIbhdaJIaJIbhebhhaJZaJIaJIbhibhjbhkbhlbhmbhnbhobhnbhpbhqaEjaZvaTxaTxbhrbhsbhtbhubhvbbIaaaaaaaaaaaaaaaaaaaaaaEjeCwgfibhzbjDgfibhzgfibhBaEjaEjnZwaEjaEjaEjahtahtahtahtaEjaElaElaElaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbhEbfZbhFbhGbhHbhGbhIbgdbhJbhKbhLaDZaALaDZaDZaDZaDZaBIaDZaDZaDZaDZbhMaDZaDZaALaDZaDZaDZaDZaDZaDZaDZaDZaBIbhNaDZaDZaDZcpHcpIcpJbhOcpKcpLcpMaDZaDZaDZwVCaBIaDZaDZaDZbhMaALaDZbhPbhQbeIbhRbhSbhTbhUbfzbhVbeIaNRaEjaUCaEjaEjbbIbbIbbIbbIbbIbbIaEjaEjaaaaaaaaaaaaaaaaEjaUCaEjlEnlEnlEnlEnaEjfwIaEjoRXaFigSIaKqaEjaElaElaElaElaEjbnliCewOfaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbbTbfYbfZbibbhGbicbidbiebgdbifaIeaHNaHNbigaHNaHNaHNbihbiibijbikbilbikbimbikbikbinbimbikbikbikbikbikbijaHNaHGbigbihaHNaHNcpNcpOcpPbiocpQcpRcpSaHNaHNbihaHNaHGbipbiqbipbirbisaHNaHNbipbitbiubhSbivbiwbeIbeIbeIbixbiybizaTxaTxaTxaTxbiCaFiaEjaGPpKdaEjaEjaEjaEjaEjaEjaEjaUCbkFpnUuwbbiDvYNbkFfwIaKqbiFgfigfigfintjgfigfigfigfintjgfivskbhBaEjaaaaaaaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaaTCbeUaTEaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaYGbbTbiIbiJbiKbiLbiMbgVbiNbgabiObiPbjjbiRbiSbiTbjLbjLbiWbiXbiYbiYbiYbiYbiZbiYbiYbjabjbbjabjabjcbjcbjdbjebjdbjfbjgbjhbjdbjicpTbjkaBIaDZaDZbjlcpUbjnbKMbjpbltbjrbKMbGabKMbBoaANbjmbjmbjmbeIbjubhSbivbiwbeIaKqbjvygZbjwbjwbjwbjwbjwbjwpdWaTxbjxbjxbjxbjxobjbjxbjxbjxbjxoTlqHIbkFpnUbjBbiDvYNbkFbjEgfibjFaFibfMybXbfMybXfNvbfMybXfNvaFiljefwIaElahtaaaaaaaTCbeUaTEaaaaTCbkPbaIaaaaTCbkPbaIaaaaTCbkPbaIaaaaTCbkPbaIaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbbQaZxaZxaZxaZxaZxbbQjzzaYGaYGbbTbfYbfZbfZbjIbjJbjKbgdbgdbjLbjLxQcbjLbjLbjLbjLbjPwUfbjRrvHbjSbjTbjUbjVbjWbiYbjXbjYbjZbkabkbbkcbkdbkebkfcpXcpYbkibjcbjdbjdbjeaEYaGVaGVbGabKMbKMbBobkmbmCbkobkpbkqbkrbksbktbkubkvbkubktbktbkwbktbktbktbkxbkxbkxbjwbkybkzbkAbkBbjwbjwbjwbjwbjwbjwbjwaLiaFiaEjaFiaEjvzPaKqbkFbndbkHbndbndbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFrxaeCKaEjaEjaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbcXaZxbkQbkRbkSaZxbcXaZxbbRbaKbbTbkTaYGbfZbgdbgdbgdbgdbkWbjLbkXbkYbkZblakSOblbblbwUfblcbiYbldblebldblfblgbiYblhblibljblkbkbbllbkhblmblncpZcqablpbkeblqblrbjdblsaDZblubKMblvblwblxblybmCblzblAblBblCblDbktblEblFblGblHblIblJblKblLbktblMblNblMbjwblPblQblRblSbjwblTblUblVblWqDJbjwtimbjwbjwbkDbjwvzPaEjbkFtaTmqltdBblZxWlbnjblXbnhbnibnjblXbnhbnibnjblXbnhblXbkFbnlwQUbnnaEjaaaaaaabyabyabyaedaedabyabyabyabyabyaedabyabyabyaedabyabyabyabyabIabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajzzbdVaZxbbRbaKbbSaZxbdVjzzbbRbaKbbTbfYbmcaYGbmdbmebmfbmfbmfbmgbmhbmibmjbmkbjLbmlbjLbmnbiXbiYbmpbmqbldblfbmrbiYbmsbmtbmubmvbkbbmwcqabpTbmxcqcbmybmzbkhbkhcqdbmAaBIaDZaDZbltbmCbmCbmCbmDbmHbmIbmJbkncqebkobkubmLbmMbmNbmObmObmPbmQbmRbktbmSbmTbmUbjwbmVbmWbmXbmYbjwbmZbnabnbbnavmGuAZeXonJIxPavxpbjwiWVwAIbkFlWHbpnbpnmQmhPNbnjblXblXblXbnjblXblXblXbnjblXblXblXbkFbokxahbomaElaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabslaZxbslbaKbaKbaKbaLbaKbnobnpbnpbnpbnqbnrbnsbntaYGbnubnvbnvbnvbnvbnvbjLbjNbnwbjNbjLbjLbnxiGJbnybiYbldbmqbldblfbnzbiYbnAbnBbnAbjabjcbnCbnDbpTbnEbnFbnFbnGcqfbkhcqdbmAaBIaDZaDZcqhcqicqibnIbJIbyKbyKbnLbnMbnNbkobktbnObmMbnPbnQbnQbnRbmMbnSbktbnTbnUbnTbjwbnVbnWbnXbnYbjwbnZbqsbqspbIbnZboebofbogbohbocbjwaFivzPbkFwfshEXthWilDnxTbnjbprblXblXbnjbprblXblXbnjbprblXblXbkFaFifwIaEjbkFbndbndbndbndbkFbkFbkFxKcbkFbkFaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabtKbtLbcXbtMbonbonbonbonboobonbaKbaKbaKbaMbopbfYbntaYGboqbnvborbosbotboubovbowboxboybozbnvboAbjQaaxbiYbldboCbldblfboDbiYboEboFboGbjcboHboIboJbpTboKboLboMboNboNboNboObjdbmBjcTbjmbKMboPboQboRboSboSboTboUbsUbyCbkobktboXbmMbnPbnQbnQbnRbmMboZbktbpabpbbpcbjwbpdbpeeSLbpgbphbpibqsbqsbqspDPboeboabpobppbncbjwbpqvzPbkFpfPbrObpnedJuePbnjoSckNfhvWbnjbqGbqHbqIbnjbqJbqKbqLbkFaFifwIbkFbkFkRKqcDqYqlGSdmTbkFblXblXblXbkFahtabyahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxaZxaZxaZxaZxaZxaZxpEHbaKbaKbaKbbTbfYbptaYGbpubnvbpvbpwbpxbnvbpybpzbpAbpBbpBbpCbpDbpEbpFbpGbpHbpIbpJbpKbpHbpMbpNbpObpPbpQbkhbpRbpSbpTbpUbpVbpVbpWbpXbpWbpVbpYvKqxjemhncClbqbcClcClbqbbqcbqbcClbqdbqebqfbktbqgbqhbqibqibqibqjbmMbqkbktbqlbqmbqnbjwbqobqpbqqbqreYredlbqtbqtbqtnBLbqvbqwlARbqxtdpbkFbnjbqAbkFbqCbzgbqEbqFostbrRbsabsbigEbnjbsabsbbscbnjbsabsdbsebkFaEjbqObkFkFDcPyxxwsNznImtqXbkFblXblXblXbkFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxdeJbaKbaKbaKbbTbqSaYGaYGboqbnvbqTbqUbqVboubqWbpzbqXbqYbqZbrabrbbrcbrdbiYbiYbiYbiYbiYbiYbiYbrebrfbrgbjcbrhbribjdbpTbpUbpVbrjdHZbrlbrkbrmbpYnTrtTlcqicClpYwbrqbrrbrsbrtbrucClbrvbyCbkobkubrwbrxbmMbrybrzbrAbrBbrCbktbrDbrEbrFbjwbrGbrHbpfbqsbqsbqsbrKbrLbrMbqsbqsbrHbqsbqsoDPbrRbrTbrUbrVbrWbrXbrWbrWnOYqVPbtwbtwbtxitlbtwbtwbtxbsfgIGgIGxjTbkFbtAbtBxKceILdirlhAnqVoEWnEbpbRblXiPjblXxKcaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxsIKbaKbaKbaKbbTbsmaYGbsnboqbnvbsobspbsqbnvbsrbssbstbsubsvbswbsxbsybszbsAbsBbsCbsCbsDbsEbsAbsFbkgbsGbjcbjdbjdaaybsHbsIbpYbsJbsKbsLbsMbsNbpYgDRtTlcqicClgFobyFbsRbsSbsRbsTcClcqkcqlbsVbktbsWbsXbsYbsZbtabtbbtcbtdbktbtebtfbkxbjwbtgbrHbthbtibrJbtkbtlbtlbtlxgGbrJbtpbtibrJbtsbttbxFbxFumevMxcsubtubtvdgzqtFbuIbuJdxcbuLbuMbuNbuObuQbuNbuNbtEqdiuXGbtFvgpmTSmTSlFhoSLiuMpWmblXblXtfPtuybkFahtabyahtaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxwjQbaKbaKbaKbbTbtNbtObtPbtQbnvbtRbtSbtTboubtUbtVbtWbtXbtYbnvbtZbsybjQbuabubbucbudbucbuebuabkhbufbrfbugcqmcqmcqmblobuibpYbujbukbulbumbunbpYvzAtTlcqitJrcSKcCtbupbuqburbuscClbutbyCbuubktbkubuvbkubktbktbktbktbktbktbuwbuxbuybodfjsbuAwBbwBbwlKbuBdkRbuCgDZcKAbuDbuEbuFbuGbuHbrRwkZbuKbkFofNxzpxprnuvjxljwebwebwebwfcucbwhbwebwfbuUbwebwebuWbkFmtIgICoBbpMGufaufahUJwXuuvonaqblXiPjblXxKcaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxpEHbaKbaKbaKbbTbfYaYGbvabvbbnvbnvbtSbnvbvcbouboubvdbvebvcbvcbvfbvgbvhbvibvjjsjbvkkQytixrarjUVbvmbvnbvobvlbvlbvlbvlbvpbvqbvrbvsbwUbvtgGApxDbvugkScqitzHduFbyFbvwbvxbvybvzbqbbsUbvAbvBbvCcqpbvEbvFbvGbvHbvIbvJbvKbvLbvMbvNbvObvPbvQbvRbvSbvTbvUeNqbvVbvWbvVbvYbvZbwabwbbwcbjwbkFbnjdqwbkFgdLugCihkihktXnbrRbxMbxNbxObnjbxMbxQbxRbnjbxMbxSbxTbkFbwmbwnbkFiPzoNEtaAriWcOpmMzbkFblXblXblXbkFaaaaedaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoQmpqPbcXqRmbbRbaKbaKbaKbbTbfYaYGbwsbwtbnvbnvbwubnvbwvbwwbwxbwybwzbwAbvcbwBbwCbwDbwEbwFbwGbwHbwIcSJbwEbwKbwLaazbwNbwObwPbwPcqsbwQbpXbwSbwTbsKbwVbwWjZGhIZtTlcqitzHbxabxcbxdbxebxfbxgbxhbxibxjbxkbxlbxmbxnbxobxpbxqbxrbxsbxtbxubxvbxwbxxbxybxzbxAbwabxCbxDeNqcxtbxGbxHbvYbxJefubxKbxLbjwldQbwmspzbkFiLlgdJpXgcPThfZbnjbzkbzlbzmbnjbznxxObzpbnjbzqbzrbzsbkFkFuvRibkFsXRoepqcHjtflGSdmTbkFblXblXeQRbkFahtabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxaZxaZxaZxaZxaZxbxYbxZbyaaYGbybbycbnvbydbtSbyebyfbygbyhbyibyjbykbvcbylbymbynbsAbyobypbuabyobsAbsAbyrbysbytbyubyvbyubyvbyubyvbpYbywbyxbsKbyzbyAbpYtqOtTlimEbyDbyEnIUbyGbyHbyImdLbqbbyJhiYbyKcqtbyLbyMbyNbyObyPbyQbyRbySbyTbyUbyVbyWbyXbyYbyZbzabzbbzcurPbzdbzebzdfkHtAKbzhbzibzjbjwlNWbwmspzbkFbkFbkFbkFbkFbkFbkFbAHblXblXbnjbAHblXblXbnjbAHblXblXbkFtSLdKsbwmsXRbndbndbndbndbkFbkFbkFxKcbkFbkFaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaZxbzzbzAbzBaYGbzCbzDbnvbzEbwubzFbzGbzHbzIbzJbzKbzLbvcbzMbzNbzObsAbzPbzQbzRbzSbzTbzUbzVbzWbzXbzYbzZbAabAbbAcbAdbpYbAebAfbAgoohbAibpYmqptTlkYMbAmbBpbAobApbAqbArbCJfRsbAtbAtbAtbAubAvbAwbAxbAybAybBobAAbAAbABbAAbAAbAAbAAbACbADbAEbAFbAFbAFwnJvTNwnJbAFbAFbAFbAFbAFbHymSclWyspzbxPbwmlWykPisyQkkQbkFblXbBUblXbnjblXbBUblXbnjblXblXblXbkFcDBoKabwmpwSmlrnNNahtaaaaaaaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtbAIbAJkGebAKbALaYGbzCbAMbnvbANbAObAPbAQbARbASbATbAUbAVbvcbAWbAXbAYbsAbCjbzQbzReFjbBcbBdbBebBfbpPwLobBgbBhbBibBjbBkbpYbpYbBlbpYbpYbpYbpYcKVkozmfCdhzwfGbBqbBrbBsbBtbBufRsbBwbBxbBybAubsUbBzbkobBBbBoaaabAAbBCbBDbBEbBFbBGbAAbBHbBIbBJbAFbBKbBLbBMbBNbBObBPbBQbBRbBSbBTbHyscigXgwFTnevxlAcDBcDBcDBrKLbkFblXbDeblXbnjblXbDeblXbnjblXbDeblXbkFcDBrgnbwmbwmsEBbwmbwmahiaaaaaaaedabyabyaedabyabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtbBVabIbBXbBXbBXbBXbBXbBYbvbbnvbnvbnvbnvbBZbCabCbbCcbCdbCebvcbCfbCgbChbsAbCiiojbBbbClbCmbyobCnbCobCpbCqbCrbCsbCtbCubCvbCwbCxbCybCzbCAbCBbNZiwedggfdQuxPbBpbCEbCFbCGbCHbCIbAobCKbCLbCMbAtcqkcqvbkobCNbCOahtbCPbDNmzEbCQbCQxExbCSbCTbCUbBJbCVbCWbCWbCXbBNbCZbCWbDabDbbDcbDdbHybwmbwmbwmhgDbwmlWyhxnrFqlWybkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFbkFaadjRGeuQvtljEXlWyvHfahiaaaaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDfabIbBXbDgbDgbDhbvabDibDjbDibDibDkbnvbvcbvcbvcbDlbDmbDnbvcbDobDpbDqbsAbDrbsAbDrbsAbDrbsAbDsbkhbpPwLobDtbDubDvbDwbDxbDybDybDybDybDybDzbvaqTVphJbmDbDAbBpbDBbDCbDDbDEbDFbAobDGbDHbDIbAtbsUbBzbkobDKbBoahtbAAbDLbDMbCRbDObDPbDQbDRbDSbDTbDUbDVbDWbDXbDYbDXbDXbEabEbbEcbEdbHyglfpNyveMbEfbAFtSLuvqobPlWybwmkgRdMOhTlbwmqIOdmPaaAsZuwfcbwmueVdoodtmgmpvuQbwmruibwmbwmahiaaaaaaaedahtahtabyabyaedahtaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDfahtbBXbEjbEkbElbEmbEnbEobmfbEpbmfbEqbDibErbvcbvcbvcbvcbvcbEsbEtbEubjcbEvbEwbExbEybEzbkbbEAbEBbECbzYbEDbEEbEFbEGbEHbDybEIbEJbEKbELbEMbvaxDjphJbmDbEQbBpbERbESbETbEUbEVfRsbEWbEXbEYbAubsUbBzbkobEZbCOaaabCPbFabFbbGhbCRbFdbCSbCTbwbbFfbCVbFhkmnbFibFjbFkbFlbFmbFnbGubFpbHybFrbFsbFtbFubAFlWybFxbFybFzbwmbFBlWybFCbwmjXAbFDlWylWysAKbwmheCefUbwmbwmbwmbwmbwmbwmaaaahtabyaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFEaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaabDfabIbBXbFFbvabvabvabvabvabsnbsnbvabFGbEnbFHbFIbFJbFKbFLbAWbErbFMbFNbFObFPnaSbkhbFQwtEbFRbFSbkhbFTbFUbFUbFUbFUbFUbFUbDybFVbFWbFXbDybFYbvabltlJIeRpbGabBpbBpbBpbBpbBpbBpbBpbAtbGbbGcbAubGdbBzbkobGebBoahtbAAbGfbGgbGhbCRbGibAAbGjbGkbGlbAFbGmbGnbGobGpbGqbGrbGsbGtbGubGvbGwqtAbGxbGynoMbGAbAGbIPbGBbIRbwmbwmrxQbwmbwmbwmbwmfKjbwmbwmbwmuugeMCjFwrNBaaaaaaahtaaaahtaaaahtaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabGDbGEbGFbGEbGGbGHbGIaaaahtahtaaaaaaaaaaaaaaaaaaaaaagSaaabvabvabvabGKaaBbGMbvabvabvabvabGNbDibErbGObGPbGQbGRbAWbGSbGTbGUbFObGVbkhbGXbuhbuhbGYbGZbuhbHabFUbHbbHcbHdbFUbFUbFUbFUbHebFUbFUbDzbvajCvbAkbAlbHpbvDbHhbHibHjbHkbHlbHmbHgbHnbHobHpbHqbHrbHsbHtbCOahtbCPbCRbHubCRbCRbHvbHwbuzbuzbuzbHybHybHybHybHybHybHyubWbHzbGubHAnsDkhkbHCbHDbHEbAFbwmbNqbwmfwrbwmsvNlWynzDbIQbIQgxKlWybwmhXtbwmcDBcDBxpDbwmahtabyabyabyabyaedabyabyaedabyahtahtaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHIbGDbGEbHJbHKbHLbGEbHMbHNaqGaqGaqGaaaaaaaaaaaaaaaahtagSbvabvabHPbHQbHQbHQbHRbHQbHSbvabHTbGNbDibErbHUbHVbHXbHXbHYbHZbIabIbbFObIcbIdbIebIfbIgbkbbCnbIhbIibIjbIkbIlbImbInbIobIpbIqbIrbIsbFUbDzbvabOKbItbIusYQbIvbIvbIvbIxbIvbIvbIycqwbIAbRXcqxbICbIDbBAbIEbBoaaabAAbIFbIGbIHbIIbIJbHwabIabIabIaaaaaaaaaaaaabIaaaaaaubWbIMbILbIMrPWbINcxbfBzbJVbAFrBhtSLbwmeMClQnbIQbIQuojbwmhXtpWFbIQbIQbIQbIQbIQdVJjQhbwmaaaahtahtaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybITbIUpbmbIVbIWbIXbHMbGEbGEbGEbGEbIYaaaaaaaaaaaaahtagSbIZbJabJbbJcbJdbJebJfbJgbJhbvabJibGNbJjpQwbJksENbJmbJlbGWbGWcBKbJnbFObFObFObjcbjcbjcbjcbJobkhbJpbJqbJrbJsbJrbJtbJubJvbJwbJxbJybJzbJAbvabENbJBbJCbJDcqzcqzcqzcqzbJEbJFbJGcqDbJHcqEbJJbJKbJLbJMbJNbJNbJNbHwbHwbJObHwbHwbHwbHwbJPbJPbJPbJPbJPahtabyabyabyahtxIxbJQbJRbJSkfhdAFbJTgMmbLhbAFgjvhMxbwmbwmbwmueklWybwmbwmbwmbwmbwmbwmrNBbwmbwmjDAbwmbwmaaaaedabyabyaedabyabyaedabyahtaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybJZbHMbKabKbbKcbKdbNwbKecqWizFbGEbIYaaaaaaaaaaaaahtagSbIZbHQbJbbKhbKibKjbKkbKlbKmbvabvabGNnpEbErbKnbKobKnbKpbKnbKqbKrbKsbKtbKubErbKvbKwbKxbKybGZbKzbKAbIjbKBbKCbKDqnibKEbJxbKFbJxbKGbFUbKHbvabKIbKJbKKbBobKMbBobBobKMbJNbKObKPbKObJNbJNbKQbJNbKRbJNbJNbKSbKTbKUbKVbKWcqGbKYbKZbLabLbbLcbLdbLebJPaaaaaaahtaaaaaabHybIMbLfbIMbHybCVwOSbCVbMqbAFtfxtfxrNBahtrNBlWylWylWybwmahtahtaedabyabyaedbwmrNBbwmahtahtabyahtaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabyabyaedabybITbHMcqHbLobOybLpbLqbLrbKfrosbHMahtaaaaaaaaaahtahtagSbvabLtbJbbLubLvbLvbLxbJbbHQbLybsnbGNnpEbErbLzbLAbKnbLAbLBbKnbLCbKsqarbLEbErbLFbLGbLHbLIbLJbnHbLKbFUbKBbLLbKDbFUbLMbLNbLObLPbLQbFUbKHbvabENbJBbCCbBobLRbLSbLTbLUbLVbLWbLXbLWbJNbLYbLZbMabMbbMcbMdbMebWMbOrbOXbMgbOXbMhbORabIbMibMjbOSbMkbJPahtabyabyabyahtbHybMlbMmbMnbHybCVbMpbCVahtbAFxlgxlgbwmbwmbwmbwmmESbwmbwmbwmbwmaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabIaaaabIbGHbMrbHMbLnbMsbMtbMubMvbMwbMwbMxbHMahtahtaaaahtahtahtalabvabHQfgSbLubMAbMBbLxbMCbMDbLybMEbGNnpEbErbMFbMGbKnbMGbMFbKnbMHbMIbGWbMJbErbjcbjcbjcbjcbMKboNbMMbFUbFUbFUbFUbFUbMNbMObMPbMQbMRbFUbKHbvabHfbMSbMTbMUbMVbmCbmCbMWbMXbMYbMZbNabNbbNcbNdbNebNfbNgbPTbNhbNibPUbUvbNjbNkbNlbWRbNnbLbbNobLebLebJPaaaaaaahtaaaaaabHybNpbNpbNpbHybCVbPlbCVahtuaOmJpmhKbwmikBwTOqnTlWydMIoEGhFpbwmahtabyaedaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabyaaabNrbNsbNsbHMbNtbNubLsbNvbNwbNxbNybNzbNAbNBamCamBamCamBamDahtbIZbNFbJbbNGbNHbNIbNJbJbbKmbvabvabGNnSjbErbNLbNMbKnbNNbNObKnbNPbNQbNRbErbErbNSbNTbNUbjcbjccBLbjcbjcbNVbNWbNXbFUbFUbFUbFUbFUbFUbFUbNYbNZbOabObbOcbmCbOdbmCbmCbOebOfbOgbOhbOibOjbOkbOlbOmbQJbOnbOnbOobQKbRwbQLbOpbOqbQMbWcabIbJPbJPbJPbJPbJPahtabyabyabyahtbOsbOtbOtbOtbOsbOubcOahiaaadsznquwIorNBiVJhPUlJrlWylWyndIabfrNBaaaabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaabybOvbNsbNsbOwbNwbNwbOxbMybNwbNwbNwbNwbHMbHMabIaaaahtaaaahtaaaaaabIZbHQbJbbOzbOzbOzbOzbJbbOAbvabJibGNcXWbErbOCbODbErbODbOCbErbOEbOCbAWbErbOFbCzbCzbCzbCzbCzbCzbCzbCzbCzbOHbCzhZBbCzbCzbCzbCzbCzbCzbOJbvabOKbJBbmDbOLbOLbOLbmCbOMbONbOObOPbOQbPQbPQbOTbOUbOVbOXbOXbOXbOZbPabPabPVbPdbPebPfbLabLbbPgbPhbPhbJPaaaaaaaaaaaaaaamZEmZEmZEmZEmZEahtaaaahtahtxQkmJpmhKbwmlWyxsOlWylWylWylWyabfbwmahtabyabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybGDbNsbOwbOwbOwbNwbPnbPobNwbOwbOwbOwbNsbSZabIahtahtahtahtahtahtbvabvabPpbHQbHQbHQbHQbPqbPrbvabHTbPsbPtbPubPvbPwbPxbPxbPvbPxbPybPzbvabPAbDzbPBbPBbPBbPBbPBbPBbPBbPCbPDbPEbPEbPFbPEbPEbPEbPEbPEbPEbPEbPEbPGbPHbPIbPJbPKbPLbmCbPMbJNbPNbPObPPbRxbRybPRbPSbMfbMfbMfbMfbMfbMfbMfbPVbPWbPXbPYabIbMibPZbQabQbbJPaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaahxInqumhKrNBtyprEhmaWlWyjDAcDBijUrNBaaaabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybOvbNsbQcbOwbQdbQebQfbWXbQebQdbOwbQhbNsbQiabyabyaaaaaaahtaaaahtabIbvabvabIZbIZbIZbIZbvabvabvabQjbvaqyFbvabIZbQkbvabIZbIZbvabQlbIZbvabNXbDzbPBbQmbQnbQobQpbQqbPBbPBbPBbQrbQsbTubQubQvbQwbQxbQybQzbQAbPEbQBbQCbmDbOLbOLbOLbmCbQDbQEbQFbRzbQGbRAhkabPQbSfbMfbMfbMfbMfbMfbMfbMfbPVbPWbSRbQObNnbLbbQPbPhbPhbJPaaabzyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIxQktlpmhKbwmbwmrNBbwmbwmbwmrNBbwmbwmaedabyaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabQQbNsbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbNsbQRabIabyaaaaaaahtaaaahtaaaaaaaaaaaabBWabIabIbvabQSbQTbPAbWkbQUrXTbOGbQVbOIbCzbCzbCzbQWpwjpwjbQXbCDbPBbQZcCPcCFcCHbRbbRcbRdbRebRfbRgbRhbRibRjbRjbRjbRkbRlbRmbPEbBmbJBbRnbRobRpbRobRobRqbRrbRsbRtbRubSSbQHbPQbUpbMfbMfbMfbMfbMfbMfbMfbPVbPWbRBbPYabIbJPbJPbJPbJPbJPabIabyaaaacOaaaaaaaaaaaaaaaaaaaaaaaaabIaaahxIilEhyhcdmahtaaaahtaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyabyabIbNrbNsbNsbOwbOwbQdbOwbQfbWXbOwbQdbOwbOwbNsbNsbRCabIabIaaaahtahtahtaaaaaaaaaaaabBWouvrMVrMVvmYvayvaynLlbvabFZbvabREbFZbvabRFbNKbvabvabvabKHbDibPBbQZcCFbRacCFbRGbRHbRIbRJbRKbRLbRMbRNbRObRPbRQbRRbRSbRTbRUbRVbRWbRXbRXbRYbRZbmCbCCbSabSbbScbSdbSTbSebQIbTMbMfbMfbMfbMfbMfbMfbMfbPVbPdbShbPfbLabLbbSjbSkbSlbJPaaaabyaaaabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaahtabyabyabyaedabyabyabyaedabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaabGDbNsbNsbSmbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbOwbNsbNsbSnabIaaaahtaaaahtaaaaaaaaaaaabBWbBWcqybSobSpbSqbSqnfzbvasUPbSsbStbFZbSubDibSvbSwbSxbvabKHbUebPBbQZcCHbSycCPbSzbSAbSBbSCbSDbSEbSFbSGbSHbSHbSHbSIbSJbSKbPEbSLbSMbSMbSNbSMbSObQDbSPbJNbLWbSQbTObJNbPQbPQbUpbMfbMfbMfbMfbMfbMfbSUbUwbPWbSVbPYabIbMibSWbSXbSYbJPaaaabyabIabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaahtaaaahtaaaahtaaaahtaaacFBaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyaaabQQbNsbOwbOwbOwbOwbQdbQebQfbWXbQebQdbOwbSmbOwbOwbNsuZbabIabIabIaaaahtaaaaaaaaaaaabTabTbbTcbSqbTdbDibvanpEbvabTfbTgbThbFZbTibPCbTjbPCbTkbvabKHbTlbPBbTmbTnbTobTpbTqbPBbTrbTsbQrbTtbTubTvbTwbTxbTybTzbTAbTBbPEbTCbTCbTCbTDppsbTFppsbTGbJNbTHbTIbTJbTKbTLrNibTNbMfbMfbMfbMfbMfbMfbTTbUwbPWbTPbQObNnbLbbTVbSkbSkbJPaaaabyaaaabyaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaabyaedabyaaaabyabyaedabyaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabybOvbNsbNsbOwbOwbOwbOwbOwbOwbQfbWXbOwbOwbOwbOwbOwbOwbNscqSuZbaaaabIaaaahtaaaaaaaaaaaabTWabIcqybTXbPCbSwbNKoZWlGvvGgbUarJglmsbUbbDibDibUcbUdbvabKHbBXbPBbPBbPBbPBbPBbPBbPBbPBbPBbQrbUfbUgbUhbQrbQrbQrbQrbQrbQrbQrbUibUjbUkbTCbUlbUmbUnbTQbJNbUpbUqbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbUvbUwbPWbUybWcabIbJPbJPbJPbJPbJPabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaabGIbGIbGIcqUbNsbNsbOwbOwbOwbOwbOwbQdbOwbQfbWXbOwbQdbOwbOwbOwbOwbOwbNsbNsveFahtahtahtaaaaaaaaabUDbUEbvabvabUFbDibSwbvabDibvawdxjYhdAGbvabvabvabvabvabvabvabKHbBXuwXbUGuwXbUHbUIbUJbUKbULbUMbUHbQrbUNbUObQrbUPbUQbURbUSbUTbUUbUVbUWbUXbUYbUZbVabVbbVcbVdbVebVfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbMfbKXbVjbPdbVkbVlbLabLbbVnbVobVobJPaaaabyaaaacOaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabVpbNsbNsbNsbNsbNsbQebOwbOwbOwbQgbQgbQgbQgbQfbWXbQgbQgbQgbQgbQgbQgbQgbQebNsbQRabIaaaabIaaaaaaaaabVrbvabvabVsbNKbDibvabvabDibvabVubVvbVwbvabVybPAtRcbvabDijXVbKHbBXuMeuMewMMbUHbVDbVEbVGcqVbVHbUHbVIbVJbVKbQrbVLbVMbVMbVMbVNbUUbVObVPbVQbVRbVSbVTbVUbUobJNbUpbMfbMfbMfbMfhjkbVZbVZbVYbVZbVZbVZbVYbTRbTSbUrbWbbWcabIbMibWebWfbWgbJPaaaabyabIabyaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbUCbWhbQgbQgbQgbQgbQgbOwbQdbQebQfbWXbQebWibOwbOwbOwbOwbQgbOwbNsbNsbSZaaaabIaaaaaaaaacqXabIbvabVCbvabDibvabWjbSwbvamzUbvabvabvaohRbSwbVzbvabDibvaiygbBXlTChzcfzubUHbWnbWobWpbWqbWrbUHbWsbWtbWubQrbWvbWwbWxbWybWzbUUbWAbWBbWCbWDbWEbWFbWGbWHbJNbWIbWJbMfbMfbWMpmBbOXbOXbUsbOXbWObMfbWPbUtbUubWQbUzbWRbNnbLbbWTbVobVobJPaaaabyaaabzyaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbOwbOwbQgbOwbOwbOwbOwbOwbOwbWVbWVbWWcekbWVbWVbOwbOwbOwbOwbQgbOwbUCbNsbSZabIabIabIahtahtcqXaaabvacqybvabWZbDibWZbSwbvarzpnQciEQbvahVxbSwftpbvawIvbvalIrqXqbXdbXewiBbUHbXfbXgbXhbXibXjbUHbXkbXkbXkbXkbXlbXmbXnbXobVNbUUmCemCemCebWDbXkbXpbXqbXkbJNbXrbXsbXtbXubXvbXwbUAbXxbVgkasbXAbXBbXybXCbXDbXEbXFbXGabIbJPbJPbJPbJPbJPabIabyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacfNbZYcrbbZYbZYbZYcfNcfNcfNbOwbQgbOwbOwbOwbOwbWVbWVbWVbXJbXIcdxbXJbWVbWVbWVbOwbOwbQgbOwbOwbNscrebGIaaaaaaaaaaaacqXaaaahtaaabvabDibvabXSbSwbSwkpKbXUbXVtvPoWwnNJlQXnNJqOHqYibQYbBXcifkrUreVbUHbUHbXYbXZbYaqGZbYbbYcbYdbYebTEbYfbYgbYhbYibYfbUTbYjbYkbYlbTEbYmbYnbYobTEbJNbKQbJNbYpbLWbVhdJkbYpbVibVmbNmbQObNmbQObYsbYtbYubYvbYwahtaaaahtahtaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYbZYcrgceCcrhbZYcfNcfNbOwbOwbQgbOwbOwbOwbUCbWVcrjbXJbXJbZndpcbXJbXJcrkbWVbWVbOwbQgbQgcrlbNsbNsbNsbSZabIahtahtcrmbvabIZbvabvabDibvabvabvabYFbDibDibDibDibDibDibDibDifpTbBXbXkbXkbXkbXkbXkbXkbYIbYJbYKbYLbYQbYNbYObYPbYQbYRbYSbYTbYUbYVbYWbYXbYQwjmbYObYYbYZbZahXKbZcfrjudlcuieAZcuipoPcuieAZcuipoPcuipoPcuipoPbVWbZfbZgbZhbZibZjbYwbYwbYwbYwaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYcrtcrucrvcrvbZYcfNbOwbOwbOwbQgbOwbOwbWVbWVbWVbXJbZlbZmbZndpcbZlbZmbXJcrxbWVbOwbQgbQgbXLbXMbXNrzFahiahicdmcdmcrycrzcrAcrBcrCbZrbvabNXbOBbSwbZtbZtbNKwRkbNSnWPbvabOBfpTbBXmbebZxvRmkyvsKabTEjrGbZybZzbZAbZDbZFbZAbZFbZAbZAbZAbZBbZEbZAoWubZAbZAbZFbZAbZAbZGbZFbZIueXpYhbZKbJPbZLbMibZLbJPbZLbMibZLbJPbZMbMibZNbYwbZObZPbZQbZRbZSbZTbZUigBbYwbYwnbuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYcrDcrEcrFcrGbZYbZYbZYbOwbOwbQgbOwbQebWVcdCbYzbXJbYAbYBbZndpcbYAbYBbXJcrHbWVbOwbQgbQgbNsbNsbNsbNsbNsbSZabIabIabIbvabIZbvabvacaabvabvabvabvabvabZsbvabvabvabvabvabSwfpTbBXsczeQNbpLlWJiFIcaecafbZynAYcawcajcakxhIrTdcancancancaqcarcamcamcamcamcbmcamcamcaxcalhXKcCUpYhabIbJPcazcaAcaBbJPcaCcaDcaEbJPcaFcaGcaHbYwcaIcaJcaKcaLcaMcaNcaOcaPcaQcaRhblaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabZYbZYbZYcehnkubZYbZYgiIpkMbQgbQgbQgbSmbWVbWVcaTbWVcrKbZlcrLbZndpccrMbZmcrNbWVbWVbUCbQgbOwbOwbOwbOwbOwbNscrOaaaaaaaaaaaaaaaaaabvacaabvacabaaCbvaoAWkRqbMEbvaklogjpbvabDiwNquUQkSFtcYfQfiAxoUaetauuncbccbdcbecbfcbgcbhwDlcbicbjqpScbkmgzccWvlilfxmgzmgzlrMcbncbocbpcbqbZJpYhabIbJPcbscbtcbsbJPcbucbvcbubJPcbwcbxcbycBTcbAcbBcbCcbDcbEbZTcbFfRrbYwbYwnbuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaabZYcBMbZYjsDxSXcrTceEcrUbZYpkMbZYbOwbUCbOwbOwbWVbXJcbKbWVcdrbYAcaVbZndpccaWbYBcrXcrYbWVbOwbQgbQebOwbOwbOwbOwbNsarFbvabIZbIZbIZbvaaaabvabXabvajPfkRqgkXbDiuMtbDiolcbSvlHXbvabDibvabBXkDJcamcbWbZAvjdmmvcbYcbZnRMccaccbcamcbhvxrcccaacaaeaacaacbXkckJbXkaacaacaaeaaccccccicbdwbFpYhabIbJPcbsccmcbsbJPcbuccncbubJPcbyccocbybYwccpccqccrbYwthAbYwbYwqVkbYwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYbZYcsdcsecsdcsicsfcsgcshlAfcrvbZYccubOwbOwbUCbWVbYzbWVbWVcdwcbPcbMbZndpccbPcbMcdxcskbWVbQgbQgbQgbQgbQgbQgbUCbNsarFbvacaZcbacbbbvabIZbvabRDbvaoFIkRqbvapYCbMEksfbvanewnDobvabDigMOfdSoYjcamcbdcamoAwcaecdcbZycamcamcahcamcbhirMaaccbXccXccYcbXcdaceypCotlVoHacAQcbXaackTjcamcCVpYhabIbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbJPbYwcdgcdhcdicdjcdkcdlgmZcdmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYcsncsdcsocspowSpFecsqcsrcsscsscfkcbGcbGcbGcbGcdqcdrcdsbWVcsvcduccHcbNcbOcduccHcgnbWVbWVcbRcbRbWVbWVbOwbQgbOwbNsarFbIZcbScbTbDibNKcsybSqbWlbvabvabvabvabvafefbvabvabvabvabvabIZbBXbBXuMosjCcdIouscdKbTEgnqcdLcdMqtOcdOcamcbhirMcdRwcsccXcdTwcswcscdWwcswcsoHacAQwcscdRkTjcamcebpYhaaaabIaaaaaaaaaaaaahtaaaahtaaaaaaahtaaabYwcbzbYwcecbYwcedoGwbYwcdmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacBMceFcsBcsCcspcsEhYecsEcsFcsGcsGtancefcsMceecefcegcsNcsOceicsNcsQcsQccEccFcePcePcsScbRccJbXJbXJcsTcsUccMbQgbOwbNsarFbIZccNbDiccObvabQlbvacdEbvarsestQpVDmHyfmhbDirhrdyesijbvaaaaaaabBXbXkbXkcribXkbXkbXkbXkcerbXqbXkioFcamcbhqFuaafiyJceuccYwcswcswcswcswcseWicLwcfPaagqhEcamepVpYhaaaabIaaaaaaaaaaaaahtaaaahtaaaaaaahtaaaahtaaaaaaceAbYwbYwbYwbYwbYwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYcsYcsdcdpcsprrUkwmctactbctactacteceBceBceBceBchJctgceHbWVbWVceKceLcdwcdxcthceKbWVbWVcdwcdAcdBcenbWVcdDbQgbQebNsarFbIZbIZozObIZbvacqXbvabIZbvauInboqkDYwzbbNUohRdymnVUbDibvaaaaaaaaaabXkmcicbXccRbXkceTceUceVxmEbXkceXmwGhjDcetbXkcfacbXcbXcfdwcscdWwcsdEycbXcbXcffbXqlozhaAqLIpYhaaaahtaaaaaaaaaaaafonfonfonaaaaaaahtaaaahtaaaaaaaaaaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaabZYbZYcsdkDfcsdctrctrctrcttctugKzbZYcfNcfNcfNcfNcfmctxcflcfmcfmcfmcfmcejcekcfmcfmcfmcfmcelctxcfmbWVbWVceobQgbOwbNscrOaaacjmcwAcjmahtxNxrnErnEuknmIaboqfmhnYbnYbnYbbDibDiydfbvaaaaaaaaaabXkcbXcbXcbXbXkcfreVycfsymbbXkaahnAsaaiulYbXkaaccfuaacbXkeyjeyjeyjbXkaaccfuaacbXqfrjaajaajhUwuaOpBJuaOpBJahtahtfonshHfonaaafonfonfonfonmauaaaaaagYofonmaufonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaabZYcBMbZYdpbcdocdocdoctJbZYbZYbZYcfNcfNcfNcfNcfmctKctLceJcfFcfGctMceMceNctNcfGctOcePceMctPcfmctQbWVbOwbQgbUCbNscrOaaacjmcwAcjmahtctSaaaaaabIZqdjboqrSHgVcdSrohRycxqBvihjbIZaaaaaaaaabXkceqcbVccQbXkcfObXkdWpbXksvAcfScfTcfUaaksWWtwvtlNvlCtlNeAHkTRqkMtlNloLjBncfXcfYaalupceiVnquwIowIowIoswgaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaabZYbZYctXkfMlzJbZYbZYcfNcfNcfNcfNcfNcfNcfmciDcggcfncfncfncfncfocfncfncfncfncfncfpcdxcfHcfIcfJbQgcfLbQgbNscrOaaacjmcwAxghkSbcFBaaaaaabvasXicgpbSouiPfmhreHlBPbDissxbvaaaaaaaaaabXkmhlcbVccQbXkcgrbXkcgsoremjKfFvwcstIScgucgvhoSncmiejncmlnrmEumiwncmcgxoxwvVOxNyeyjwIoupcnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNbZYbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVcfmcfDcfEbWVcgGcgGbWVcgGcgGbWVcgGcgGbWVcfEcdxcfmcfmcfmcfmcfmcfmcfmcrOaaacjmcwAxghkSbaaaaaaaaabvabvadNrgHZxCVdJmxCVfvbpBDbvabvaeNFeNFeNFbXkceqceqccQbXkcgPbXkcgQqWGmjKfmLgggiCscgUlXbsWjcCIqeYlUOqeYwMXqeYpuwqeYmeFiopsmvuIBhyhdszgBbgBbgBbgBbpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNbWVcukcgbculcumcfCbWVcdrcdCcdCbXJcfmchfcfEcgGchicidcuncgkcuocupciVcgmcgGcfEcgncfmcgLcgMcgNcfmcgOcfmcrOaaacjmvcocjmahtaaaaaangeahtbBXbBXbBXehMbDixaObBXbBXbBXahtaaaaaaaaabXkceqceqccQbXkcgPbXkchvbXkmjKgXZqbprPgaamcgvdnSaanfyOmpdfBZdFJprQfyFfyOaaokWQxNyeyjupceiVnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNbWVcuscutchBcgdcuucgfcuvcuwcuxcuychFcuzcfpcgGcidcuAcuBcuAciVcuEcgHcuEcgGchnchochpchqchrchschtchucfmcfNaaacjmcwAcjmahtaaaaaaadRahtbBXbDiwfObDiwfOswwbDibDibBXahtaaaaaaaaabXkbXkbXkbXkbXkcgPtuemKkpaUaapkmdqbprPgaaquaPhSCaarfyOhKpfBZwYKprQcZtfyOaaooXqhGBeyjvoheiVnsJnsJnsJnsJpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVcuGcuHcuIcuJchUbWVbXJcbKcbKcuKcfmciDcfEbWVcuMcibcicciScgIcgKcgHcuObWVcfEcuPcuQchKchLchMcfmchNcfmcfNcfNcjmcwAcjmmauaaaaaaadRahtbBXbDibDidWkweLbDiwfOfLGbBXahtaaaaaaaaaaaaaaaaaaaaaahtcgPpjHcdmdSpaaclXJgEocBRaaccgvjTUaaofyOhKpfBZdFJprQcZtfyOaasqpdhStuIBpBJuaOgBbgBbgBbgBbhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVbWVchbchcchdcuRcuScePctgcePcePcuUcuVcuWcuXchjcgHcgHchkchlcgJcgHcgHcuYcdwcdxcfmcfmcfmcfmcfmcfmcfmcfNcfNcjmcwAxghfonaaaaaaadRahtbBXbBXbBXbBXbBXbBXbBXbBXbBXahtaaaaaaaaaaaaaaaaaaaaaahtcgPpjHcdmcdmaaclXJdMGiCsjzEukpfZKmeFqeYcitcgYuzhdgjfjDqeYcCItkLciveyjwIovohnsJnsJnsJnsJpBJaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIaaaabIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVchCchDcuZchEciybWVcrjciAcdCbXJcfmciDcfEbWVcvbcgHchGcgHcibcgHcicciEbWVcfEcvccfmciocgMcipcfmciqcfmcfNcfNcjmcwAxghfonaaaaaaaaaaaaahtahtahtahtahtahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaahtcigpjHaaaaaabXkbXkbXkbXkbXkcgVpgHoKvoKvqeYciInUQpsdqeYcBScBStODciveyjvoheiVnsJnsJnsJnsJhyhahtahtfonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIabIabIabIabIabIabIaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNbWVchVchWchXchYchZbWVciNcvdciOcvecfmcfDcfEcgGciTciSciTcgHcvgabZciVciWcgGchnchociFchqchrchschtchucfmcfNcfNcfNxYVcjmahtaaaaaaaaaaaaadRngengeadRadReNFeNFngeeNFaaaaaaaaaaaaaaaaaaaaaaaaabIcgProcahtahtshHaaaaaaaaabXkcgvpgHwbBwbBpuwtdLfymfxCiTFcjtiLhtODvswbXkcdmcdmdszhyhdszhyhcdmaaaaaafonshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIahiahiahiahiahiabIaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVbWVcfmchfcfEcgGcvhcidcjocvicidcvjcjqcjrcgGcfEcvkcuQciXchLciYcfmciZcfmcfNcfNcfNbNEcjmahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIcigmVMaaaaaashHahtahtahtbXkcgvuRkxzRwfPvBEdHrhondZjslJkaRliRikOqRlbXkaaaaaaahtaaaahtaaaahtaaaaaafonfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjvcjvcjwcjxcjxcjxcjwcjvcjvcjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVciJciKbWVbWVcizcizcizcizcizcizbWVbXJcjHcfDcfEbWVcgGcgGbWVcgGcgGbWVcgGcgGbWVcfEcdxcfmcfmcfmcfmcfmcfmcfmcfNcfNcfNxYVcjmahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaabXkgQfciGhQChQChQChQChQChQChQChQChQChQCoKJbXkaaaaaaahtaaaahtaaaahtaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjvcjVcjxcjxcjxcjxcjvcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaafITfITfITfITcjfcjgcvqcgfcvrcvsckbckbckccvtcgfckdchFcvucfocfncfncfncvwcfncfncfncfncvwcfncvykXxcfmcfNcfNcfNcfNcfNcfNcfNcfNcfNqWocjmcjmfonaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaashHahtahtahtbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkbXkahtfonfonfonfonfonfonfonahtahtahtahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjxcktcjxcjxcjxcjxcjxcjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacjBcfHcfIcjCcfJbXJcjkcePcvAcePcvBckuckucvCcePcjlcePcuQcvEcvFciRcvFcvHcvIciRciRcvJckEcvKcePcfGcsSjSacwAxSdcwAcwAcwAcwAiXxxYVqWolxIeNccjmfonaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaaaaaahtaaaahtaaaahtaaaahtaaaahtaaaahtaaaahtahtahtfonshHshHshHshHshHfonaaaahtshHshHfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjucjucjxcjxcjxckLcjxcktcjxcjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaafITfITfITfITcjZckabWVbWVcvRcvScvTcvTcvVcrkbWVbWVcvXcvYcvZcwacwacwcckQcwacwecweckTcwgcwecwecfmcfmcfNcfNcfNcfNcfNcjmcjmcjmcjmxVtpiacjmahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaashHahtahtahtfonfonfonfonfonfonfonfonfonfonfonfonfonfonahtahtfonfonfonfonfonfonfonaaaahtshHfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjxcjxcjxcjxcjxcjxcjxcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNbWVbWVbWVbWVcwjbXJcdwbZocwkceQbXJcwlbWVckeckfcwmcwncwocwpclfcjOcwecjPxhjcjRcwrcwecwecwecwecfNcfNcfNcfNcfNcfNahtcjmcjmcjmcjmahtaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMahtahtshHaaaaaaaaafonshHshHshHshHshHshHshHshHshHshHshHshHfonahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKckKckKcjucjucjuckKcjucjxcjxcljcjxcjxcjucjuckKcjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNcfNbWVcwwbXJcjjcwxcwyciAbXJcwzbWVckyckfckjckgckhckicwAckkcwecklxhjjFOclmfWvfWvckpcwecfNcfNcfNcfNcfNcfNaaaahtahtahtahtnKoaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaashHahtahtahtfonfonfonfonfonfonfonfonfonfonfonfonfonfonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKckKcjucjucjucjucjucjucjucjxcjxcjxcjuckKcjuckKcjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacfNcfNcfNbWVbWVcrjbXJcwEcwFbXJcwGbWVbWVcldclecwHckzckAckBcwAckCcweckDcwKckFckGqOEqOEckIcwecfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaafonaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjuckKckKckKckKcjucjucjuckKcjuckKckKcjucjuckKckKcjuckKckKcjuckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacwMfITcwObXJckvckwbXJcwOfITcwRcCRcjmckOckPckPckPcwSckRcweckSodMjFOcwUckVmKcckXcwecfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKckKcjuckKckKcjucjuckKckKckKckKckKcjucjuckKckKckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabITfITfITfITckMckNfITfITfITcwRaaacjmcjmcjmcjmcjmcjmcjmcweclgxhjcxejXhqOEqOEckIcwecfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaamauaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjuckKckKcjuckKckKcjucjucjuckKckKckKckKcjuckKckKcjucjuckKckKckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxgcxhfITclbclbfITcxkcxgaaaaaaaaacfNcfNcfNcaScfNcfNcweclkcxnjFOckUclnclnclncwecfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKckKckKcjuckKckKcjucjuckKckKckKckKckKcjuckKckKcjucjucjuckKckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxgaaaaaacxgaaaaaaaaaaaaaaaaaacfNcfNcaScaScaScwecwexhjjFOcwecwecwecwecwecfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKcjuckKcjuckKckKckKckKcjucjuckKckKckKcjuckKckKcjuclsckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcaScfNcaScfNcwelqycxzcwecfNcaScfNcaScfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigmVMaaaaaaahtaaaaaaaaaaaaabNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKcjucjucjucjuckKckKcjuckKcjucjucjucjuckKckKckKckKckKckKcjucjuckKckKcjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcaSaaaahtaaacxBcxCcxDcxEaaaahtcfNcaScfNcfNcfNcfNcfNaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaamauaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjuckKckKcjuckKcjucjucjucjuckKckKckKckKcjuckKcjuckKckKckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaaacxJcxKcxLcxMaaaahtaaaahtaaacfNcfNcfNaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPmVMaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKckKckKckKckKcjuckKckKckKckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaahtaaacxJcxXcxYcxMaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPtfwaaaaaafonaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjuckKckKcjucjucjuckKckKckKckKckKckKcjucjuckKckKckKcjuckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaahtaaaahtaaacxJcylcymcxMaaaahtaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPpjHaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKckKcjuckKckKckKckKckKcjuclvckKckKcjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaahtaaaahtaaacyycyzcyAcyBaaaahtaaaahtaaaaaaaaaaaaaaaaaacfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcigpjHaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjuckKckKckKckKckKcjuckKcjucjucjuckKckKckKckKcjucjucjuckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcfNaaaaaacjpcjpcjpcjpcjpjgrvOwcjpcjpcjpcjpcjpahtahtahtahtahtcyLcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPuHGclziBJouvrnrabIabIaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjucjucjuckKckKckKcjucjuckKcjucjucjucjucjucjuckKckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcyMahtahtcjpcjpcCWckWcyPcyQcjQijFcyRcySckocyTcjpcjpaaaahtaaaaaacfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPclwclAclBclwclEclwclwaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKckKcjucjuckKckKckKckKckKcjuckKckKckKcjucjuckKckKckKcjucjucjuckKcjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNaaaaaacyUckHckHckHckHckHcjQpXcickickickickxjccyUaaaahtaaacfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIcgPclwclDhQzclwxnmclNclwaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjuckKckKclFcjucjucjuckKckKckKckKckKckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcyMahtahtcjpcyYcyZckHcyZckHcjQckmckHcyZckHcyZxjacjpahtahtahtcyMcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclCclwclJclBclwclMqxqclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjucjuckKckKckKckKcjucjucjuckKckKcjuckKckKckKcjuckKckKcjucjuckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNaaaaaaaaacyUckHckHckHckHckHcjQckmckHckHckHckHckHcyUaaaaaacfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclGclHclQclRclSclTclUclVclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKcjucjuckKcjucjucjuckKckKckKcjucjuclvcjuckKckKcjucjuckKckKcjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcyMahtahtahtahtcjpckHczlczlczlckHcjQckmckHczoclpczpczqcjpaaaaaacfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIclGclPclXclYclZcmacmbcmcclwabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjuckKckKcjuckKckKckKckKclvcjuckKckKcjucjuckKcjucjucjucjucjuaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacjpckHczrczrcztckHcjQckmckHczuczvckHczwcjpahtahtcyMcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclGkFmrsZcmdtlwclLmxymDWclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKcjuckKckKckKckKckKclvckKckKckKcjuckKcjucjuckKcjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacyUckHczrczBczCckHcjQckmckHczDczvckHckHcyUaaaahtcfNcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclwclwcmhcmeclwclwclwclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjuckKckKckKcjuckKckKckKcjuckKckKcjucjuckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaahtaaacjpczHczIczIczIckHczLczMckHczNczOczPczQcjpahtahtahtcyMcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwcmfcmguznnMGcmjcmkcmlclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjuckKcjucjuckKcjuckKckKckKckKckKcjuckKckKckKckKckKcjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNaaaahtaaacyUckHckHczVczWczWczYczZcAacAaclickHckHcyUaaaaaaaaacfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwcmmcmncmocmpcmqcmrcmsclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKcjuckKckKckKckKckKckKckKckKckKckKcjucjucjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcyMahtahtahtcjpcyRckHckHcAgcAgcAicAjcAgcAgckHckHcyRcjpahtahtahtcyMcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRcmtclwcmucmvclGcmwclGcmxcmyclwcmzadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjuckKckKckKckKckKckKckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNaaaaaaaaacyUcyUcjpcArcAscAtcAucAvcAtcAscAycjpcyUcyUaaaaaacfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaaclwclGclGclGcmFclGclGclGclwaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjucjuckKcjucjuckKcjuckKckKcjuckKcjuckKcjucjucjuckKcjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcfNcfNaaaahtaaacjpcABckHckHcACcADckHckHcABcjpaaaahtaaacfNcfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmBcmGclGopzclGcmHcmBcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacjucjucjucjuckKcjuckKckKcjuckKcjucjucjuckKcjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaacfNcfNcfNcfNcfNaaaahtaaacyUcyUcAHczWcAJcAKcAacAMcyUcyUaaaahtaaacfNcfNcfNcfNcfNcfNcfNaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBxFlgpIgpIqYScmKcmKcmKcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuckKckKckKckKcjuckKcjucjuckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcyMahtahtahtahtcjpcjpcAScATcAUcAVcjpcjpahtahtahtaaaaaaaaacfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmLcmMcmNcmKcmOcmPcmQcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjuclvckKckKcjuckKckKckKckKcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaacfNcfNcfNcfNcfNaaaaaaaaaaaacyUcyUcyUcyUcyUcyUahtaaaaaaahtaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIcmBcmRcmKcmKcmKcmKcmKcmUcmBabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacjucjucjuckKclvcjucjucjuckKcjuckKcjucjuckKcjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNcfNaaaaaaaaaaaaaaaahtaaaaaaaaaaaaahtaaaaaacyMcfNaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmVcmWcmKcmXcmKcmYcmZcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacfNcfNcfNaaaaaaaaaaaaaaaaaaahtaaaaaaaaaaaaahtaaacfNcfNcfNaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnacnbcmKcnccmKcndcnecmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjxcjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahtaaaaaacfNcfNcyMcfNcfNcfNaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmRcmKcmKcmKcmKcmKcmUcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjxcnpcjxcjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacyMcfNcfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnjcnkcnlcmKcnmcnncnocmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaacjucjucjuckKcjucjucnqcjucjucjuckKcjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaabIadRabIcmBcmKcmKcmKcmKcmKcmKcmKcmBabIadRabIaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfNcfNcfNcfNcfNcfNcfNcfNaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcnrcnscntcnucnvcnwcnxcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacjucjucjucjucjucjucjucjuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaacfNcfNcfNcfNaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRaaacmBcmBcmBcmBcmBcmBcmBcmBcmBaaaadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaacnyaaaaaaaaaabIaaaaaaaaacnzaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaadRadRadRadRadRadRadRadRadRadRadRadRadRaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaabIaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCxGcrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC -rmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmCrmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(2,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(3,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(4,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(5,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(6,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(7,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(8,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(9,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(10,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(11,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(12,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(13,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(14,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(15,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(16,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(17,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(18,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(19,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(20,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(21,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(22,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(23,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(24,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(25,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aoH +aoH +aoH +aoH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(26,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aaa +aoI +aaa +aoH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(27,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoI +aoI +azG +aoI +aoI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(28,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aaa +azH +aaa +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(29,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(30,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +azI +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(31,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aqb +ara +ara +ara +ara +ara +ara +ara +ayy +azJ +aAV +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aIr +aoI +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(32,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqc +aqc +aqc +aqc +aqc +aqc +aqc +aqc +aaa +azK +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(33,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(34,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +azK +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(35,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aqb +ara +ara +ara +ara +ara +ara +ara +ayy +azK +aAV +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aIr +aoI +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(36,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqc +aqc +aqc +aqc +aqc +aqc +aqc +aqc +aaa +azK +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(37,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(38,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +azK +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(39,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aqb +ara +ara +ara +ara +ara +ara +ara +ayy +azK +aAV +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aIr +aoI +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(40,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +azK +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(41,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoJ +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(42,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +azK +aaa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aqa +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cjB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(43,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aqb +ara +ara +ara +ara +ara +ara +ara +ayy +azK +aAV +aCa +aCa +aCa +aCa +aCa +aCa +aCa +aIr +aoI +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bZY +bZY +cBM +bZY +bZY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +fIT +cfH +fIT +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(44,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +azK +aaa +aqd +aqd +aqd +aqd +aqd +aqd +aqd +aqc +aaa +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bZY +bZY +csn +ceF +csY +bZY +bZY +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +fIT +cfI +fIT +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(45,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aaa +aaa +aaa +azK +aaa +aaa +aaa +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aoI +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cBM +csd +csd +csB +csd +csd +cBM +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +fIT +cjC +fIT +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(46,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aoH +aoI +aoH +aoH +aoH +aaa +aaa +aaa +aaa +aaa +aaa +azL +aaa +aaa +aaa +aaa +aaa +aaa +aoH +aoI +aoH +aoH +aoH +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +bZY +bZY +cse +cso +csC +cdp +kDf +bZY +bZY +cfN +cfN +cfN +cfN +cfN +cfN +cfN +bWV +bWV +fIT +cfJ +fIT +bWV +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(47,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +bZY +bZY +bZY +bZY +jsD +csd +csp +csp +csp +csd +dpb +bZY +bZY +cfN +cfN +cfN +cfN +cfN +cfN +bWV +ciJ +cjf +bXJ +cjZ +bWV +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(48,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bZY +bZY +crt +crD +bZY +xSX +csi +owS +csE +rrU +ctr +cdo +ctX +bWV +bWV +bWV +bWV +bWV +bWV +bWV +bWV +ciK +cjg +cjk +cka +bWV +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(49,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +crb +crg +cru +crE +ceh +crT +csf +pFe +hYe +kwm +ctr +cdo +kfM +bWV +cuk +cus +cuG +bWV +chC +chV +bWV +bWV +cvq +ceP +bWV +bWV +bWV +bWV +cwM +bIT +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(50,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +bZY +ceC +crv +crF +nku +ceE +csg +csq +csE +cta +ctr +cdo +lzJ +bWV +cgb +cut +cuH +chb +chD +chW +bWV +bWV +cgf +cvA +bWV +cwj +cww +bWV +fIT +fIT +cxg +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(51,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +bZY +crh +crv +crG +bZY +crU +csh +csr +csF +ctb +ctt +ctJ +bZY +bWV +cul +chB +cuI +chc +cuZ +chX +bWV +ciz +cvr +ceP +cvR +bXJ +bXJ +crj +cwO +fIT +cxh +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(52,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bVp +cfN +cfN +bZY +bZY +bZY +bZY +bZY +bZY +lAf +css +csG +cta +ctu +bZY +bZY +bWV +cum +cgd +cuJ +chd +chE +chY +bWV +ciz +cvs +cvB +cvS +cdw +cjj +bXJ +bXJ +fIT +fIT +cxg +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(53,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGI +bNs +cfN +cfN +cfN +cfN +cfN +bZY +giI +pkM +crv +css +csG +cta +gKz +bZY +cfN +bWV +cfC +cuu +chU +cuR +ciy +chZ +bWV +ciz +ckb +cku +cvT +bZo +cwx +cwE +ckv +ckM +clb +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(54,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGI +bNs +cfN +cfN +cfN +cfN +bOw +bZY +pkM +bZY +bZY +cfk +tan +cte +bZY +bZY +cfN +bWV +bWV +cgf +bWV +cuS +bWV +bWV +bWV +ciz +ckb +cku +cvT +cwk +cwy +cwF +ckw +ckN +clb +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(55,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aed +aby +aht +aby +aby +aby +aht +aby +aby +aby +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGI +bNs +cfN +bOw +cfN +bOw +bOw +bOw +bQg +bOw +ccu +cbG +cef +ceB +cfN +cfN +cfN +bWV +cdr +cuv +bXJ +ceP +crj +ciN +bWV +ciz +ckc +cvC +cvV +ceQ +ciA +bXJ +bXJ +fIT +fIT +cxg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(56,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aht +aaa +aaa +aaa +aaa +aht +aaa +aaa +aaa +aaa +aht +aaa +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aby +aby +aby +cqU +bNs +bUC +bOw +bOw +bOw +bOw +bOw +bQg +bUC +bOw +cbG +csM +ceB +cfN +cfN +cfN +bWV +cdC +cuw +cbK +ctg +ciA +cvd +bWV +ciz +cvt +ceP +crk +bXJ +bXJ +cwG +cwO +fIT +cxk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(57,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiu +ait +ait +ait +aiu +aiu +ait +ait +ait +aiu +aiu +aht +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +bOv +bNs +bNs +bWh +bQg +bQg +bQg +bQg +bQg +bQg +bOw +bOw +cbG +cee +ceB +cfN +cfN +cfN +bWV +cdC +cux +cbK +ceP +cdC +ciO +bWV +bWV +cgf +cjl +bWV +cwl +cwz +bWV +fIT +fIT +cxg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(58,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiu +fIN +wwG +gGy +wYu +uQR +uaE +pdq +ajD +dci +aiu +aht +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +bGD +bQQ +bNs +bNs +bQe +bQg +bOw +bOw +bOw +bOw +bOw +bSm +bOw +bUC +cbG +cef +ceB +cfN +cfN +cfN +bWV +bXJ +cuy +cuK +ceP +bXJ +cve +bWV +bXJ +ckd +ceP +bWV +bWV +bWV +bWV +cwR +cwR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cyM +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(59,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiu +oFf +ycr +wDm +wYu +ajD +ajD +ajD +ajD +mwg +aiu +aht +aaa +azH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aby +aby +aby +aby +aaa +bNr +bNs +bNs +bNs +bOw +bOw +bQg +bOw +bOw +bOw +bOw +bQe +bWV +bWV +bWV +cdq +ceg +chJ +cfm +cfm +cfm +cfm +cfm +chF +cfm +cuU +cfm +cfm +cfm +cjH +chF +cuQ +cvX +cke +cky +cld +cCR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aht +aaa +aaa +aaa +cfN +cyM +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(60,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +lcU +sGr +hiw +wYu +ajD +jsf +ajD +rLi +tlc +aiu +aht +axB +rKr +axB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +bOv +bGD +bOv +bQQ +bNs +bNs +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bOw +bWV +bWV +bWV +bXJ +bYz +cdr +csN +ctg +ctx +ctK +ciD +cfD +chf +cuz +ciD +cuV +ciD +cfD +chf +cfD +cvu +cvE +cvY +ckf +ckf +cle +cjm +cjm +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cyM +cfN +cyM +aaa +aht +aaa +aaa +aaa +aaa +aht +aaa +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(61,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +aiu +kJw +aiu +aiu +aiu +aiu +cHS +aiu +aiu +aiu +axC +axB +azN +axB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aed +abI +bNr +bNs +bNs +bNs +bNs +bNs +bSm +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bUC +bWV +cdC +caT +cbK +bWV +cds +csO +ceH +cfl +ctL +cgg +cfE +cfE +cfp +cfE +cuW +cfE +cfE +cfE +cfE +cfo +cvF +cvZ +cwm +ckj +cwH +ckO +cjm +cfN +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +aht +aaa +aht +aaa +aht +aht +aht +aht +aht +aht +aaa +cfN +cfN +cyM +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(62,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aiu +gwn +aiu +apz +aqe +aoK +dcL +apB +aiu +tpb +axC +ayz +azN +axB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bHI +aby +aby +aby +bGH +bNs +bNs +bOw +bQc +bOw +bOw +bOw +bOw +bOw +bOw +bQg +bQg +bOw +bWV +bWV +bWV +bYz +bWV +bWV +bWV +bWV +cei +bWV +cfm +ceJ +cfn +bWV +cgG +cgG +bWV +cuX +bWV +cgG +cgG +bWV +cfn +ciR +cwa +cwn +ckg +ckz +ckP +cjm +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aht +aaa +aaa +aaa +aht +cfN +cfN +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(63,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ait +ait +ait +aiu +aiu +aht +aht +aiu +wRI +ajD +ajD +ajD +aoK +aBa +xyB +aiu +aAa +axC +axB +hzd +axB +axC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGD +bGD +bIT +bJZ +bIT +bMr +bNs +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bWV +crj +bXJ +bXJ +crK +cdr +cdw +csv +csN +bWV +cfm +cfF +cfn +cgG +chi +cid +cuM +chj +cvb +ciT +cvh +cgG +cfn +cvF +cwa +cwo +ckh +ckA +ckP +cjm +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +cjp +cyU +cjp +cyU +cjp +cjp +cyU +cjp +cyU +cjp +cyU +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(64,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ait +aiV +ajB +akr +aiu +ait +ait +aiu +lMU +apB +woq +lXc +nPA +egK +aBa +aiu +azZ +axC +ayA +azP +aAW +axC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGE +bGE +bIU +bHM +bHM +bHM +bHM +bNw +bOw +bQd +bOw +bQd +bOw +bQd +bOw +bQd +bQg +bQd +bWV +bWV +bXJ +bZl +bYA +bZl +bYA +cbP +cdu +csQ +ceK +cfm +cfG +cfn +cgG +cid +cuA +cib +cgH +cgH +ciS +cid +cgG +cfn +cvH +cwc +cwp +cki +ckB +ckP +cjm +caS +caS +caS +caS +aht +aht +aht +aht +cjp +cjp +ckH +cyY +ckH +ckH +ckH +ckH +czH +ckH +cyR +cyU +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(65,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ait +aiW +ajC +ajD +ali +ajD +ajD +anq +aoe +aiu +apB +aiu +aiu +aiu +aoK +aiu +azY +axC +ayB +azQ +aAX +axC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bFE +bGF +bHJ +pbm +bKa +cqH +bLn +bNt +bNw +bNw +bQe +bOw +bOw +bOw +bQe +bOw +bOw +bQg +bQe +bWV +bXJ +bXJ +bZm +bYB +crL +caV +cbM +ccH +csQ +ceL +cfm +ctM +cfn +bWV +cun +cuB +cic +cgH +chG +ciT +cjo +bWV +cvw +cvI +ckQ +clf +cwA +cwA +cwS +cjm +cfN +caS +cfN +aaa +aaa +aaa +aaa +aaa +cjp +cCW +ckH +cyZ +ckH +czl +czr +czr +czI +ckH +ckH +cjp +cjp +cyU +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(66,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +aiX +ajD +aks +aiu +ait +ait +aiu +hOx +aDm +aDm +aDm +aoL +aso +aso +rrb +oPx +axC +ayC +azR +aAY +axC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aTH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGE +bHK +bIV +bKb +bLo +bMs +bNu +bOx +bPn +bQf +bQf +bQf +bQf +bQf +bQf +bQf +bQf +bQf +bWW +bXI +bZn +bZn +bZn +bZn +bZn +bZn +cbN +ccE +cdw +cej +ceM +cfo +cgG +cgk +cuA +ciS +chk +cgH +cgH +cvi +cgG +cfn +ciR +cwa +cjO +ckk +ckC +ckR +cjm +cfN +caS +caS +aht +aht +aht +aht +aht +cjp +ckW +ckH +ckH +ckH +czl +czr +czB +czI +czV +ckH +cAr +cAB +cyU +cjp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(67,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +adR +adR +aht +ait +aiY +ajE +akt +aiu +aaa +aaa +aiu +aCg +aiu +aiu +aiu +wRz +aiu +aiu +aiu +syn +axC +axC +azS +axC +axC +aiu +aiu +aiu +ait +ait +aiu +aaa +aaa +aaa +aHA +aKy +xee +aKy +aHA +aaa +aaa +aaa +aHA +aKy +xee +qIC +aHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGG +bHL +bIW +bKc +bOy +bMt +bLs +bMy +bPo +bWX +bWX +bWX +bWX +bWX +bWX +bWX +bWX +bWX +cek +cdx +dpc +dpc +dpc +dpc +dpc +dpc +cbO +ccF +cdx +cek +ceN +cfn +cgG +cuo +ciV +cgI +chl +cib +cvg +cid +cgG +cfn +ciR +cwe +cwe +cwe +cwe +cwe +cwe +cwe +cwe +cfN +aaa +aaa +aaa +aaa +aaa +cjp +cyP +ckH +cyZ +ckH +czl +czt +czC +czI +czW +cAg +cAs +ckH +cAH +cjp +cyU +aaa +aaa +aaa +aaa +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(68,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aht +aht +aht +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aCg +aiu +aqg +gjN +arc +atp +aus +aiu +wxb +axC +xuv +azN +vtT +vtT +aiu +apB +aiu +aBa +oTC +ait +aaa +abN +aaa +aHA +aKz +aHA +aKz +aHA +abI +aht +abI +aHA +aKz +aHA +aKz +aHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGH +bGE +bIX +bKd +bLp +bMu +bNv +bNw +bNw +bQe +bOw +bOw +bOw +bQe +bOw +bOw +bQg +bQe +bWV +bXJ +bXJ +bZl +bYA +crM +caW +cbP +cdu +ceP +cth +cfm +ctN +cfn +bWV +cup +cuE +cgK +cgJ +cgH +abZ +cvj +bWV +cfn +cvJ +cwe +cjP +ckl +ckD +ckS +clg +clk +cwe +cwe +cxB +cxJ +cxJ +cxJ +cyy +cjp +cyQ +ckH +ckH +ckH +ckH +ckH +ckH +ckH +czW +cAg +cAt +ckH +czW +cAS +cyU +aht +aht +aht +cyM +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(69,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afU +afU +pfz +uqJ +afU +afU +ajF +aku +alj +alT +skw +anr +aof +aiu +aqh +lqc +aoe +atq +aut +aiu +giO +aDm +kJo +fAx +aDm +aDm +aDm +aDm +aDm +mLB +wUz +ait +aht +aht +aht +aHA +dqG +aHA +aKz +aHA +abI +aaa +abI +aHA +aKz +aHA +wKa +aHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bGI +bHM +bHM +bNw +bLq +bMv +bNw +bNw +bOw +bQd +bOw +bQd +bOw +bQd +bOw +bQd +bQg +bWi +bWV +bWV +bXJ +bZm +bYB +bZm +bYB +cbM +ccH +ceP +ceK +cfm +cfG +cfn +cgG +ciV +cgH +cgH +cgH +cic +ciV +cjq +cgG +cfn +ckE +ckT +xhj +xhj +cwK +odM +xhj +cxn +xhj +lqy +cxC +cxK +cxX +cyl +cyz +jgr +cjQ +cjQ +cjQ +cjQ +cjQ +cjQ +cjQ +czL +czY +cAi +cAu +cAC +cAJ +cAT +cyU +aaa +aaa +aaa +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(70,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +agi +agi +agi +afU +hwj +ahu +ahS +oXe +afU +ajG +akv +alk +alU +amH +ans +ePU +aiu +aqi +ard +asr +atp +auu +aiu +ekU +aiu +asr +tyL +ajD +nPA +mtu +aCc +aiu +wxb +wig +ait +aaa +aaa +aaa +aHA +wqu +aHA +wqu +aHA +abI +aht +abI +aHA +wqu +aHA +wqu +aHA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +btK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bHN +bGE +bKe +bLr +bMw +bNx +bNw +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bWV +crk +bXJ +bXJ +crN +crX +cdx +cgn +csS +bWV +cfm +ctO +cfn +cgG +cgm +cuE +cuO +cgH +ciE +ciW +cjr +cgG +cvw +cvK +cwg +cjR +jFO +ckF +jFO +cxe +jFO +jFO +cxz +cxD +cxL +cxY +cym +cyA +vOw +ijF +pXc +ckm +ckm +ckm +ckm +ckm +czM +czZ +cAj +cAv +cAD +cAK +cAU +cyU +aaa +aaa +aaa +cfN +cfN +cfN +cfN +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(71,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +szG +sOC +iCV +msX +dVI +ahv +ahT +aiv +afU +ajG +akw +all +alV +tfZ +vCC +lHc +aiu +aiu +aiu +ait +ait +aiu +aiu +aiu +aiu +ait +ait +aiu +aiu +aiu +aiu +aiu +aCg +aiu +aiu +aiu +aiu +aHz +xee +aKB +nYn +aKB +xee +aHA +aHA +aHA +xee +aKB +nYn +fTY +xee +aYG +aZx +aZx +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bsl +btL +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aqG +bGE +cqW +bKf +bMw +bNy +bNw +bOw +bQh +bOw +bOw +bOw +bSm +bOw +bOw +bQg +bOw +bOw +bWV +bWV +crx +crH +bWV +crY +csk +bWV +cbR +bWV +cfm +ceP +cfn +bWV +cgG +cgG +bWV +cuY +bWV +cgG +cgG +bWV +cfn +ceP +cwe +cwr +clm +ckG +cwU +jXh +ckU +cwe +cwe +cxE +cxM +cxM +cxM +cyB +cjp +cyR +ick +ckH +ckH +ckH +ckH +ckH +ckH +cAa +cAg +cAt +ckH +cAa +cAV +cyU +aaa +aaa +cfN +cfN +cfN +cfN +cfN +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(72,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +lem +mzl +sJp +qMi +iPU +ahw +ahU +aiw +afU +ajH +ajH +ajH +ajH +ajH +ant +aiu +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +aCd +hHr +hHr +aCg +ezF +aod +aqg +aiu +iab +aKA +aOk +aJE +aWE +aWE +wwr +hwd +wwr +aOk +aOk +aJE +aWE +aWK +aYG +aZy +baJ +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aZx +bcX +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aht +aqG +bGE +izF +ros +bMx +bNz +bHM +bNs +bNs +bNs +bNs +bOw +bOw +bOw +bOw +bQg +bOw +bOw +bOw +bWV +bWV +bWV +bWV +bWV +bWV +bWV +ccJ +cdw +cel +ceM +cfp +cfE +cfE +chn +cfE +cdw +cfE +chn +cfE +cfE +cvy +cfG +cwe +cwe +fWv +qOE +ckV +qOE +cln +cwe +cfN +aaa +aaa +aaa +aaa +aaa +cjp +cyS +ick +cyZ +ckH +czo +czu +czD +czN +cAa +cAg +cAs +ckH +cAM +cjp +cyU +aaa +aaa +cfN +cfN +cfN +cfN +cfN +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(73,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +agj +agv +agF +agT +ahj +ahx +ahV +aix +aiZ +ajH +akx +alm +alW +amI +anu +aog +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +nyO +ezJ +ujI +dgI +ujI +ujI +iJi +aiu +xaQ +fmU +wOa +qUw +xSZ +wOa +aQv +eAp +aJE +ftW +coN +kvj +ftW +ppQ +aYG +aZy +baK +jzz +aZx +jzz +aaa +aaa +aaa +aaa +aaa +aaa +jzz +aZx +jzz +bsl +btM +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqG +bGE +bGE +bHM +bHM +bNA +bHM +bSZ +bQi +bQR +bNs +bNs +bOw +bOw +bOw +bQg +bOw +bOw +bOw +bOw +bOw +bOw +bUC +bOw +bQg +cbR +bXJ +cdA +ctx +ctP +cdx +cdx +cgn +cho +cuP +cdx +cvc +cho +cvk +cdx +kXx +csS +cfm +cwe +fWv +qOE +mKc +qOE +cln +cwe +caS +aht +aht +aht +aht +aht +cjp +cko +ick +ckH +ckH +clp +czv +czv +czO +cli +ckH +cAy +cAB +cyU +cjp +aht +aht +aht +cyM +cfN +cfN +cfN +cfN +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(74,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +aht +afU +afU +agw +afU +afU +ahk +ahy +ahW +aiy +aja +ajI +aky +aln +alX +amJ +anv +aoh +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +awE +qGu +eOZ +kQZ +nih +kxs +qGu +aiu +rgs +jeq +pGe +aQt +aOf +xLi +aQr +aQr +aQr +oLR +pGe +aQt +aOf +aWK +aYG +aZy +baK +bbQ +bcX +bdV +aaa +aaa +aaa +aaa +aaa +aaa +bbQ +bcX +bdV +baK +bon +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bIY +bIY +aht +aht +bNB +abI +abI +aby +abI +bRC +bNs +bNs +bNs +bOw +bQg +bQg +bQg +bQg +bQg +bQg +bQg +bQg +bQg +bQg +cbR +bXJ +cdB +cfm +cfm +cfH +cfm +cfm +chp +cuQ +cfm +cfm +ciF +cuQ +cfm +cfm +jSa +cfm +cwe +ckp +ckI +ckX +ckI +cln +cwe +cfN +cfN +aaa +aaa +aaa +aaa +cjp +cyT +ick +cyZ +ckH +czp +ckH +ckH +czP +ckH +ckH +cjp +cjp +cyU +aht +aaa +aaa +aaa +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(75,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aed +adR +abI +abI +abI +abI +abI +afX +agl +agx +agH +agV +ahl +ahz +ahX +aiz +ajb +ajH +akz +alo +alY +amK +anw +aoh +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiu +aiu +kFx +aiu +aiu +aiu +aiu +gKG +aiu +aJD +jeq +pGe +aQu +aOg +aWK +aRD +aSv +aTK +aML +pGe +aQu +aOf +duQ +aYG +aZz +baK +aZx +aZx +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +aZx +aZx +baK +bon +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aaa +aht +aby +aby +abI +bSn +uZb +cqS +bNs +bQe +bOw +bOw +bOw +bQg +bQg +bQg +bOw +bQe +bQg +bWV +csT +cen +bWV +ctQ +cfI +cfm +cgL +chq +chK +cfm +cio +chq +ciX +cfm +cfN +cwA +cfN +cwe +cwe +cwe +cwe +cwe +cwe +cwe +caS +caS +aht +aht +aht +aht +cjp +cjp +xjc +xja +ckH +czq +czw +ckH +czQ +ckH +cyR +cyU +aaa +aaa +aht +aaa +aaa +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(76,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aem +aem +aem +aem +aem +aiA +aiA +aiA +aiA +aiA +aiA +ahA +ahY +aiA +aiA +aiA +akA +alp +akA +akA +akA +aoi +aiu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ebD +sbY +fuP +pXT +wrU +mpy +aiu +gue +aIC +pvK +aKD +gmO +aQt +aOh +aWK +aRE +aSw +aTL +aML +gmO +aQt +gpC +ppQ +aYG +aZA +baK +bbR +bcY +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +bkQ +bbR +baK +bon +aZx +aaa +aaa +aaa +aaa +oQm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +amB +aht +aht +aaa +aaa +abI +abI +abI +uZb +bNs +bNs +bNs +bUC +bOw +crl +bXL +bNs +bOw +bOw +bQg +bWV +csU +bWV +bWV +bWV +cfJ +cfm +cgM +chr +chL +cfm +cgM +chr +chL +cfm +cfN +xSd +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aht +cjp +cyU +cjp +cyU +cjp +cjp +cyU +cjp +cyU +cjp +cyU +aht +aht +aht +aht +cyM +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(77,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeo +aeC +aeT +afn +agy +afZ +agn +agy +agy +agy +agy +ahB +ahZ +aiB +ajc +ajM +akB +alq +alZ +amL +anx +aoj +aiu +aaa +aaa +aaa +aaa +aaa +aaa +avp +aaa +aaa +aaa +aaa +ebD +aCe +gPV +pEL +elk +mXq +aiu +jhk +aiu +gxq +aKE +pGe +aQu +aOg +aWK +aRF +aSx +aTM +aML +pGe +aQu +aOf +aWK +aYG +ovM +baL +baK +bcZ +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +bkR +baK +baL +bon +aZx +aaa +aaa +aaa +aZx +pqP +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aaa +aht +aaa +aaa +aaa +aaa +abI +aaa +veF +bQR +bNs +bNs +bNs +bNs +bXM +bNs +bOw +bOw +bQg +bOw +ccM +cdD +ceo +bOw +bQg +cfm +cgN +chs +chM +cfm +cip +chs +ciY +cfm +cfN +cwA +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +cfN +cfN +aaa +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(78,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +abI +aen +aep +aeD +aeU +aeU +afC +aeU +aeU +agy +agI +agW +agA +ahC +aia +aiC +ajc +ajM +akC +alr +ama +amM +akA +akA +akA +apE +apE +ari +apE +bBW +apE +avq +apE +ajM +aiu +aiu +gSH +xJy +sJr +sJr +sJr +sJr +aiu +jhk +aiu +niy +aKE +pGe +aQt +aOf +aPo +nGi +nGi +nGi +aPn +pGe +aQt +aOf +aWK +aYG +aZA +baK +bbS +bda +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +bkS +bbS +baK +boo +aZx +aaa +aaa +aaa +aZx +bcX +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aht +amB +aht +aht +aht +aht +aht +aht +abI +abI +aht +abI +bSZ +bSZ +cre +bNs +bXN +bNs +bOw +bOw +bQg +bQg +bQg +bQg +bQg +bQg +cfL +cfm +cfm +cht +cfm +cfm +cfm +cht +cfm +cfm +cfN +cwA +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aht +aht +aht +aht +aaa +aaa +aht +aht +aht +aaa +aht +aaa +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(79,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeq +aeE +aeU +afo +afD +aga +aga +agz +aie +aiH +ahm +ahD +aib +aiD +ajc +ajM +akD +als +amb +amN +ajM +aok +aoO +apF +apE +wxJ +apE +bBW +ajM +avr +awH +axE +ayE +aAb +ebD +jjC +eEp +vhk +gAG +kxj +aiu +oTp +aiu +aJF +aKG +gvf +kvj +aOk +aWE +aJE +aRC +aQs +aTJ +vsJ +aVN +cJo +ppQ +aYG +aZA +baM +aZx +aZx +aZx +aaa +aaa +aaa +aaa +aaa +aaa +aZx +aZx +aZx +bno +bon +aZx +aZx +aZx +aZx +aZx +qRm +aZx +aaa +aaa +aht +aaa +aaa +aaa +aaa +aht +aht +aht +aht +aht +amD +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +aht +aaa +aaa +abI +bGI +bNs +rzF +bNs +bOw +bOw +bUC +bOw +bOw +bQe +bOw +bUC +bQg +cfm +cgO +chu +chN +cfm +ciq +chu +ciZ +cfm +cfN +cwA +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aht +aaa +aaa +aht +cfN +cfN +cyM +cfN +aht +aaa +aht +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(80,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +abI +aen +aer +aeF +aeU +afp +afE +aeU +aeU +agy +agK +agY +agy +ahB +aic +aiE +agy +ajM +akE +alt +amc +amO +ajM +aol +aoP +apG +ajM +arj +ajM +ajM +akA +akA +akA +ajM +ayF +aAc +xLC +xeB +nSo +uuS +uAU +oCn +aiu +jhk +aiu +riF +xhE +ftW +aJE +coN +aPq +klB +klB +klB +hkQ +ftW +aJE +fwe +aWK +aYG +aZA +baN +bbQ +bcX +bdV +aaa +aaa +aaa +aaa +aaa +aaa +bbQ +bcX +bdV +bnp +baK +pEH +deJ +sIK +wjQ +pEH +bbR +aZx +aaa +aht +bBV +bDf +bDf +bDf +agS +agS +agS +agS +agS +ala +aht +aaa +aht +aht +aht +aht +aht +aht +aht +aht +abI +abI +abI +aaa +bSZ +ahi +bNs +bNs +bNs +bNs +bNs +bNs +bNs +bNs +bNs +bNs +cfm +cfm +cfm +cfm +cfm +cfm +cfm +cfm +cfm +cfN +cwA +cjm +cfN +cfN +cfN +aaa +aaa +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aht +aaa +cfN +cyM +cfN +cfN +cfN +cfN +cyM +cfN +cyM +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(81,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aes +aeG +aeV +afq +afF +agb +agb +agA +agA +agA +ahn +ahF +aic +aiF +ajd +ajJ +akF +alu +amd +amP +any +aom +aom +akF +aom +ark +asu +atv +aux +avs +awI +axF +ayL +aAd +ebD +aCf +hnu +jTu +wTD +uVf +aiu +jhk +aiu +aiu +aiu +sgc +nDx +gLF +aHz +eLt +aRB +aRB +aOs +fUA +aVM +xmp +aOs +aYG +aZA +baN +jzz +aZx +jzz +aaa +aaa +aaa +aaa +aaa +aaa +jzz +aZx +jzz +bnp +baK +baK +baK +baK +baK +baK +baK +aZx +aaa +bAI +abI +abI +aht +abI +aaa +bva +bIZ +bIZ +bva +bva +bIZ +bIZ +bva +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +abI +ahi +bSZ +crO +arF +arF +arF +arF +arF +crO +crO +crO +crO +crO +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +iXx +cjm +cfN +cfN +aaa +aaa +aaa +aaa +cfN +cfN +aaa +aaa +aaa +aaa +aaa +cyL +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(82,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +abI +aen +aet +aeH +peE +afo +afG +aeU +eSB +agy +agL +agZ +aho +ahG +aid +aiG +aje +ajK +akG +alv +ame +amQ +anz +aon +aon +apH +aqm +aon +asv +atw +aon +avt +awJ +axG +ayG +pFy +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aHC +aIH +ofX +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aiu +aiu +wEn +aPv +fBt +aHz +aYG +aZA +baN +bbR +bbR +aYG +aaa +aaa +bgS +aaa +aaa +aaa +aYG +bbR +bbR +bnp +baK +baK +baK +baK +baK +baK +baK +aZx +aZx +bAJ +bBX +bBX +bBX +bBX +bva +bva +bJa +bHQ +bLt +bHQ +bNF +bHQ +bva +bva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aht +cdm +abI +aaa +bva +bva +bIZ +bIZ +bIZ +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +xYV +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(83,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeu +tnP +dYe +aeH +afH +aeH +aeH +agB +agM +aha +ahp +ahH +aie +aiH +ajf +ajL +akH +alw +amf +amR +anA +aoo +ana +aoo +aqn +arl +asw +atx +auz +avu +rjF +axG +ayH +aAe +aBc +aCh +eQZ +eQZ +aFk +aFU +eQZ +gjq +aiu +iSz +aIH +aIH +aIH +aOm +aIH +aIH +jTh +aSu +aiu +nfi +aJE +aWF +aXF +aYG +aZC +baN +baK +baK +aYG +aYG +aZx +aZx +aZx +aZx +aYG +aYG +baK +baK +bnq +baM +baK +baK +baK +baK +baK +baK +bxY +bzz +kGe +bBX +bDg +bEj +bFF +bva +bHP +bJb +bJb +bJb +fgS +bJb +bJb +bPp +bva +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aht +cdm +abI +aaa +bIZ +caZ +cbS +ccN +bIZ +cjm +cjm +cjm +cjm +cjm +cjm +cjm +cjm +cjm +cfN +cfN +cfN +cfN +qWo +cjm +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +cfN +cfN +cfN +cfN +cfN +cfN +cfN +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(84,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +abI +aem +agy +agy +lGp +aeU +afI +aeU +jXF +agy +agN +agY +agy +ahI +aif +aiB +agy +ajM +akI +alx +amg +amg +anB +amg +aoQ +amg +aqo +alv +asx +ajM +ajM +ajM +akA +axH +ayI +aAf +aBd +aBd +aBd +aBd +aBd +aFV +oEA +oEA +oEA +oEA +oEA +oEA +oEA +oEA +oEA +ayD +vIc +xxS +vAq +uLF +aVO +aWF +aXG +aYG +aZD +baO +bbT +bbT +bbT +beY +bbT +bbT +bbT +bbT +bbT +bbT +bbT +bbT +bnr +bop +bbT +bbT +bbT +bbT +bbT +bbT +bxZ +bzA +bAK +bBX +bDg +bEk +bva +bva +bHQ +bJc +bKh +bLu +bLu +bNG +bOz +bHQ +bIZ +aaa +aaa +aaa +aaa +aaa +bUD +bVr +cqX +cqX +cqX +crm +cry +abI +aaa +bIZ +cba +cbT +bDi +ozO +cwA +cwA +cwA +cwA +vco +cwA +cwA +cwA +cwA +xYV +bNE +xYV +qWo +lxI +xVt +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +aaa +aaa +aaa +aaa +aaa +aaa +cfN +cfN +cfN +cfN +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(85,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeW +ovB +utg +afr +agy +agc +ago +agy +agy +agy +agy +ahJ +aig +aiJ +agy +ajN +akJ +aly +amg +amS +anC +aop +aoR +apJ +apN +aon +aty +atz +aux +avv +awI +axG +ayL +aAi +aBd +aCi +aDo +xjK +fhM +aFW +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +oEA +oEA +scp +oEA +oEA +dpa +dTV +aWF +kAa +aYG +aZE +baP +bbU +bdb +bdW +beZ +bfY +bfY +bhE +bfY +biI +bfY +bkT +bfY +bns +bfY +bfY +bqS +bsm +btN +bfY +bfY +bya +bzB +bAL +bBX +bDh +bEl +bva +bGK +bHQ +bJd +bKi +bLv +bMA +bNH +bOz +bHQ +bIZ +bBW +bBW +bBW +bTa +bTW +bUE +bva +abI +aaa +aaa +bva +crz +bva +aaa +bIZ +cbb +bDi +ccO +bIZ +cjm +cjm +xgh +xgh +cjm +cjm +cjm +xgh +xgh +cjm +cjm +cjm +cjm +eNc +pia +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(86,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +adR +aaa +aem +aeX +iLR +iPH +iPH +agy +agd +agp +agC +agO +ahb +agy +ahK +aih +aiK +agy +ajO +akK +alz +amg +amT +anD +amX +aoS +apJ +aqq +aon +atB +atA +auA +avw +awJ +axG +ayL +aAi +aBd +aCj +aDp +aEm +aFm +aFn +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +aPt +nsy +eDC +tnY +uCS +mal +dTV +aWI +aXK +aXH +aXH +aXH +aXH +bdc +bdX +bfa +bfZ +bga +bfZ +bfZ +biJ +bfZ +aYG +bmc +bnt +bnt +bpt +aYG +aYG +btO +aYG +aYG +aYG +aYG +aYG +bBX +bva +bEm +bva +aaB +bHQ +bJe +bKj +bLv +bMB +bNI +bOz +bHQ +bIZ +abI +ouv +bBW +bTb +abI +bva +bva +bva +bva +aht +bIZ +crA +bIZ +aaa +bva +bva +bNK +bva +bva +aht +aht +kSb +kSb +aht +aht +mau +fon +fon +aht +aht +aht +cjm +cjm +cjm +cjm +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(87,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +abI +aem +aem +aem +aem +aem +aem +aem +aem +aem +aem +aem +aem +ahL +ahL +ahL +ahL +ahL +ahL +ahL +amg +amU +anE +amX +aoT +apK +aqr +arl +awK +atD +auz +avx +rjF +axG +ayJ +aAg +aBe +aCk +aDq +aEn +aFm +aFX +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +aPt +uos +xnP +qjx +iPO +pOr +geU +aWJ +aXK +aYH +aZF +baQ +aXH +bdd +bdY +bfb +bfZ +bgU +bhF +bib +biK +bfZ +bfZ +aYG +aYG +aYG +aYG +aYG +bsn +btP +bva +bws +byb +bzC +bzC +bBY +bDi +bEn +bva +bGM +bHR +bJf +bKk +bLx +bLx +bNJ +bOz +bHQ +bIZ +abI +rMV +cqy +bTc +cqy +bva +bVs +bVC +cqy +aaa +bva +crB +bva +aaa +aaa +bIZ +csy +bQl +cqX +xNx +ctS +cFB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fon +fon +aht +aht +nKo +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(88,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aed +adR +abI +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +abI +ahL +aii +aiL +ajg +ajP +akL +cBi +amh +amV +anF +amW +aoU +apL +aqs +aon +asz +ajM +ajM +ajM +akA +axI +ayL +aAh +aBf +aCl +aDr +aEo +aFo +aFY +oEA +uoS +uoS +uoS +rJZ +uoS +uoS +tCP +xOC +jAy +rHA +ffJ +oEA +dpa +dTV +aWF +aXI +aYI +aZG +baR +aXI +bde +baK +baN +bga +bgV +bhG +bhG +biL +bjI +bgd +bmd +bnu +boq +bpu +boq +boq +btQ +bvb +bwt +byc +bzD +bAM +bvb +bDj +bEo +bva +bva +bHQ +bJg +bKl +bJb +bMC +bJb +bJb +bPq +bva +bva +rMV +bSo +bSq +bTX +bUF +bNK +bva +bva +bva +bva +crC +bva +bva +bva +bva +bSq +bva +bva +rnE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(89,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +abI +ahL +aij +aiM +aiM +ajQ +akM +juw +ami +amW +anG +amX +aoV +apJ +aqt +arm +rdB +atz +aux +avy +awI +axG +ayL +aAi +aBe +aCm +aCk +aEp +aFm +nBw +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +aPt +aQw +eHI +yfO +hDG +aUG +aVP +aWJ +aXJ +fow +aZH +baS +bbV +bbT +bdZ +bfc +bgb +bgW +bhH +bic +biM +bjJ +bgd +bme +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bnv +bDi +bmf +bsn +bva +bHS +bJh +bKm +bHQ +bMD +bKm +bOA +bPr +bva +bQS +vmY +bSp +bTd +bPC +bDi +bDi +bDi +bWZ +bDi +bDi +bZr +caa +caa +bXa +bRD +bWl +cdE +bIZ +rnE +aaa +aaa +aaa +nge +adR +adR +adR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(90,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +sdk +ahL +aik +aiM +ajh +ajR +akN +ivO +amj +amX +anH +aoq +aoW +apM +aqu +arn +asA +atC +auA +avz +awJ +axG +ayL +aAi +aBd +aCn +aDt +aEq +aFp +aFn +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +aPt +aQx +aRG +qWM +oEA +aUH +dTV +aWF +aXI +aYJ +aZI +baT +aXI +baK +bea +bfd +bgc +bgX +bhG +bid +bgV +bjK +bgd +bmf +bnv +bor +bpv +bqT +bso +btR +bnv +bnv +byd +bzE +bAN +bnv +bDi +bEp +bsn +bva +bva +bva +bva +bLy +bLy +bva +bva +bva +bva +bQT +vay +bSq +bDi +bSw +bSw +bva +bva +bDi +bva +bva +bva +bva +bva +bva +bva +bva +bva +bva +ukn +bIZ +bva +bva +aht +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(91,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +abI +ahL +ail +aiN +aji +ajS +akO +pfB +amk +amY +anI +aor +aoX +apI +apO +aro +jen +atD +auz +avA +rjF +axG +ayL +aAi +aBd +aCo +aCk +aEr +aGa +gQo +oEA +uoS +uoS +uoS +uoS +uoS +uoS +uoS +oEA +oEA +oEA +oEA +oEA +aUI +aQz +fBt +aXK +aYK +aZJ +baU +aXK +bdf +bdf +bfe +bgd +bgY +bhI +bie +biN +bgd +bgd +bmf +bnv +bos +bpw +bqU +bsp +btS +btS +bwu +btS +bwu +bAO +bnv +bDk +bmf +bva +bva +bHT +bJi +bva +bsn +bME +bva +bJi +bHT +bQj +bPA +vay +bSq +bva +bNK +bva +bva +bWj +bWZ +bXS +bva +bNX +bva +cab +jPf +oFI +bva +rse +uIn +mIa +qdj +sXi +bva +bBX +bBX +bBX +bBX +aht +adR +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(92,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +abI +ahL +aim +aiO +ajj +ajT +akP +alA +aml +amZ +anJ +amX +aoY +amg +sBA +arp +asB +ajM +ajM +ajM +akA +axJ +ayL +aAi +aBd +aBd +aBd +aBd +aBd +aBd +oEA +oEA +oEA +oEA +oEA +oEA +oEA +oEA +oEA +aKH +aLu +aLu +aRH +aUJ +aVQ +nyB +aXB +aXI +aZK +aXI +aXK +aGV +aGV +bff +bgd +bga +bgd +bgd +bga +bgd +bkW +bmf +bnv +bot +bpx +bqV +bsq +btT +bnv +bnv +bye +bzF +bAP +bnv +bnv +bEq +bFG +bGN +bGN +bGN +bGN +bGN +bGN +bGN +bGN +bPs +bva +bWk +nLl +nfz +npE +oZW +bDi +bDi +bSw +bSw +bSw +bva +bOB +bva +aaC +kRq +kRq +bva +stQ +boq +boq +boq +cgp +dNr +bBX +bDi +bDi +bBX +aht +nge +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(93,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +agP +agQ +agQ +agP +ahL +ahL +ahL +ahL +ahL +ahL +ahL +amg +amg +anK +aos +aoZ +amg +aqv +aro +jxK +atE +auB +avB +awL +axK +ayM +aAj +aBg +aCp +aDu +aEs +aFr +aGb +aGU +aHE +aAL +aAL +aAL +aAL +aMR +aAL +aAL +aHE +aAL +aAL +aTO +aUK +xvO +aCZ +aGU +aAL +aZL +aAL +aAL +aAL +aAL +bfg +aAL +aAL +bhJ +bif +biO +bjL +bjL +bmg +bnv +bou +bnv +bou +bnv +bou +bvc +bwv +byf +bzG +bAQ +bBZ +bvc +bDi +bEn +bDi +bDi +bJj +npE +npE +npE +nSj +cXW +bPt +qyF +bQU +bva +bva +bva +lGv +bva +bva +bva +bva +bSw +bYF +bSw +bva +bva +gkX +bva +bva +pVD +kDY +fmh +rSH +bSo +gHZ +bBX +wfO +bDi +bBX +aht +nge +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(94,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agP +cnJ +ahq +ahq +ahM +ain +aiP +ajk +ajU +akQ +alB +amm +anb +anL +aot +apa +agP +aqw +arp +tTZ +atF +alv +alv +awM +axG +ayN +aAk +axG +aCq +axG +axG +axG +aGc +aGV +aHF +aIL +aDZ +aDZ +aDZ +aMS +aDZ +aDZ +aQB +aPR +aPR +aPR +aUL +wun +aEa +aHm +aEa +aZM +baV +aEa +aEa +aEa +bfh +aEa +bgZ +bhK +aIe +biP +bjL +bkX +bmh +bjL +bov +bpy +bqW +bsr +btU +bou +bww +byg +bzH +bAR +bCa +bvc +bEr +bFH +bEr +bEr +pQw +bEr +bEr +bEr +bEr +bEr +bPu +bva +rXT +bFZ +sUP +bTf +vGg +wdx +bVu +mzU +rzp +kpK +bDi +bZt +bva +oAW +bDi +pYC +bva +mHy +wzb +nYb +gVc +uiP +xCV +ehM +bDi +dWk +bBX +aht +adR +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(95,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +ahd +ahq +ahq +ahN +aio +agP +ajl +ajV +ajV +alC +amn +alC +alE +aou +apb +agP +aqx +arq +asD +atG +auC +auC +awN +axL +ayO +aAl +aBh +aBh +aDv +aBh +aBh +aGd +tHk +aHG +aIM +aJG +aKI +aLv +aMT +aKI +aPw +aQC +aKI +aKI +aTP +aUM +aVR +aKI +aXL +aYL +aZN +baW +aKI +aKI +beb +aKI +bge +bha +bhL +aHN +bjj +xQc +bkY +bmi +bjN +bow +bpz +bpz +bss +btV +bou +bwx +byh +bzI +bAS +bCb +bvc +bvc +bFI +bGO +bHU +bJk +bKn +bLz +bMF +bNL +bOC +bPv +bIZ +bOG +bva +bSs +bTg +bUa +jYh +bVv +bva +nQc +bXU +bDi +bZt +bZs +kRq +uMt +bME +fef +fmh +bNU +nYb +dSr +fmh +dJm +bDi +wfO +weL +bBX +aht +adR +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(96,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +ahd +ahq +cnT +ahq +ahd +agP +ajm +ajW +ajV +alD +amo +anc +anM +aou +apb +agQ +aqp +arp +asE +ajM +auD +avC +akA +axJ +axG +aAm +aBi +aBi +aBi +aBi +aBi +aBi +aBi +hqo +aDZ +aJH +aKJ +aLw +aMU +aKK +aKJ +aQD +aRI +coV +aKT +aUN +aVS +aVS +aXM +aVS +aVS +aXM +bbW +bbW +aVS +aVS +bgf +bhb +aDZ +aHN +biR +bjL +bkZ +bmj +bnw +box +bpA +bqX +bst +btW +bvd +bwy +byi +bzJ +bAT +bCc +bDl +bvc +bFJ +bGP +bHV +sEN +bKo +bLA +bMG +bNM +bOD +bPw +bQk +bQV +bRE +bSt +bTh +rJg +dAG +bVw +bva +iEQ +bXV +bDi +bNK +bva +bME +bDi +ksf +bva +bDi +ohR +nYb +ohR +reH +xCV +xaO +sww +bDi +bBX +aht +eNF +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(97,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +afJ +aby +aaa +agQ +ahd +ahq +ahq +ahq +ahd +agP +ajn +ajW +ajV +alE +amp +and +and +aov +apc +apP +aqy +arr +asC +ajM +auE +avD +awO +axG +axG +aAm +aBi +aCr +aDw +aEt +aFs +aGe +aGX +aHH +aDZ +aJI +aKK +aLx +aMV +aOt +aKJ +aKT +aKT +aKT +aKT +aUO +aVS +aWM +aXN +aVS +aZO +baX +bbX +bdg +bec +bfi +bgg +bhc +aAL +big +biS +bjL +bla +bmk +bjN +boy +bpB +bqY +bsu +btX +bve +bwz +byj +bzK +bAU +bCd +bDm +bvc +bFK +bGQ +bHX +bJm +bKn +bKn +bKn +bKn +bEr +bPx +bva +bOI +bFZ +bFZ +bFZ +lms +bva +bva +bva +bva +tvP +bDi +wRk +bva +bva +olc +bva +bva +rhr +dym +bDi +ycx +lBP +fvb +bBX +bDi +wfO +bBX +aht +eNF +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(98,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +agP +cnN +ahq +cnT +ahq +ahd +agP +ajo +ajX +ajV +alC +amn +alC +alE +aow +apd +agQ +aqz +ars +asy +atH +auF +avE +awP +axG +ayP +aAn +aBi +aCs +aDx +aEu +aFt +cou +aGY +aHI +aIN +aJJ +aKL +aLy +aMW +aOu +aKJ +aQE +aRJ +aSz +aSz +aUP +aVT +aWN +aXO +aYM +aZP +baY +aZP +bdh +bed +aVS +bgh +aJI +aDZ +aHN +biT +bjL +kSO +bjL +bjL +boz +bpB +bqZ +bsv +btY +bvc +bwA +byk +bzL +bAV +bCe +bDn +bvc +bFL +bGR +bHX +bJl +bKp +bLA +bMG +bNN +bOD +bPx +bIZ +bCz +bva +bSu +bTi +bUb +bva +bVy +ohR +hVx +oWw +bDi +bNS +bva +klo +bSv +new +bva +dye +nVU +bDi +qBv +bDi +pBD +bBX +bDi +fLG +bBX +aht +nge +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(99,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +ahd +ahq +ahq +ahq +aip +agP +ajp +ajY +ajV +alF +amq +ane +anN +aox +ape +agP +aqA +art +asF +ajM +auG +avF +awQ +axG +ayQ +axG +aBi +aCt +aDy +aDA +aDA +aGf +aGX +aHH +aIO +aJI +aKK +aLz +aMX +aOv +aKJ +aQF +aRK +aRL +aRL +aUQ +aVU +aWO +aXP +aVS +aZQ +baZ +bbY +bdi +bee +aVS +bgi +aJI +aDZ +aHN +bjL +bjL +blb +bml +bjL +bnv +bpC +bra +bsw +bnv +bvc +bvc +bvc +bvc +bvc +bvc +bvc +bvc +bAW +bAW +bHY +bGW +bKn +bLB +bMF +bNO +bOC +bPv +bIZ +bCz +bRF +bDi +bPC +bDi +bva +bPA +bSw +bSw +nNJ +bDi +nWP +bva +gjp +lHX +nDo +bva +sij +bDi +ydf +ihj +ssx +bva +bBX +bBX +bBX +bBX +aht +eNF +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(100,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +cnP +ahq +ahq +ahO +aiq +aiQ +ajq +ajZ +akR +alG +amr +anf +anO +aoy +apf +ajM +ajM +aru +asG +ajM +auH +avG +awR +axM +ayR +aAo +aBi +aCu +aDz +aDA +aDA +aGg +aBi +aHJ +aIO +aJI +aKJ +aKJ +aKJ +aKJ +aKJ +aQG +aRL +aRL +aRL +aUR +aVS +aVS +aVS +aVS +aVS +aVS +aVS +aVS +aVS +aVS +aaw +aJI +aDZ +aHN +bjL +bjP +blb +bjL +bnx +boA +bpD +brb +bsx +btZ +bvf +bwB +byl +bzM +bAW +bCf +bDo +bEs +bEr +bGS +bHZ +bGW +bKq +bKn +bKn +bKn +bEr +bPx +bva +bCz +bNK +bSv +bTj +bDi +bva +tRc +bVz +ftp +lQX +bDi +bva +bva +bva +bva +bva +bva +bva +bva +bva +bIZ +bva +bva +aht +aht +aht +aht +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(101,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agQ +cnQ +ahq +cnV +ahP +air +agP +agP +agP +cCS +alH +ams +alH +anP +agP +apg +ajM +aqB +arv +asH +atI +auI +avH +awR +awR +awR +awR +aBj +aCv +aDz +aDA +aDA +aGh +aBi +aHK +aIO +aJI +aKM +aLA +aMY +aKP +aNm +aQG +aRL +aSA +aTQ +aUS +aRL +aWP +aXQ +aYN +aZR +aYN +aYN +aYN +aXQ +bfj +bdm +aJI +aDZ +bih +biW +wUf +wUf +bmn +iGJ +bjQ +bpE +brc +bsy +bsy +bvg +bwC +bym +bzN +bAX +bCg +bDp +bEt +bFM +bGT +bIa +cBK +bKr +bLC +bMH +bNP +bOE +bPy +bQl +bQW +bva +bSw +bPC +bUc +bva +bva +bva +bva +nNJ +bDi +bOB +bSw +bDi +bDi +bDi +bIZ +aaa +aaa +aaa +aaa +aaa +eNF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(102,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +agP +cnQ +ahq +ahq +ahQ +ais +agP +ajr +aiR +akT +aiR +amt +aiR +anQ +aiR +aph +ajM +aqC +arw +asI +aqC +auH +avI +auH +axN +ayS +aAp +aBj +aCw +aDA +aDy +aDA +aGi +aBi +aHL +aIP +aJK +aKN +aLB +aMZ +aKP +aPx +aQH +aRM +aSB +aTR +aUT +aRL +aWQ +aXR +aXS +aZS +bba +aZS +aXS +bef +bfk +bdm +bhd +aBI +bii +biX +bjR +blc +biX +bny +aax +bpF +brd +bsz +bjQ +bvh +bwD +byn +bzO +bAY +bCh +bDq +bEu +bFN +bGU +bIb +bJn +bKs +bKs +bMI +bNQ +bOC +bPz +bIZ +pwj +bva +bSx +bTk +bUd +bva +bDi +bDi +wIv +qOH +fpT +fpT +fpT +wNq +bva +gMO +bBX +aaa +aaa +aaa +aaa +aaa +eNF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(103,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +agP +agQ +agQ +agQ +agP +agP +agP +ajs +aiR +akU +alI +amu +ang +anR +aiR +aph +ajM +aqD +arx +asJ +aqC +auH +avJ +awS +axO +ayT +aAq +aBj +vTL +aDA +aEv +aFu +lnn +aGZ +aHM +aIQ +aJL +aKO +aLC +aNa +aKP +aPy +aQI +aRL +aSC +aTS +aUU +aRL +aWQ +aXS +aYO +aZT +aZT +aZT +bdj +beg +bfl +bdm +aJI +aDZ +bij +biY +rvH +biY +biY +biY +biY +bpG +biY +bsA +bua +bvi +bwE +bsA +bsA +bsA +bsA +bsA +bjc +bFO +bFO +bFO +bFO +bKt +qar +bGW +bNR +bAW +bva +bva +pwj +bva +bva +bva +bva +bva +jXV +bva +bva +qYi +bBX +bBX +bBX +uUQ +bBX +fdS +bBX +bBX +aaa +aaa +aaa +aaa +eNF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(104,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +abI +abI +abI +abI +ajs +aka +akV +alJ +amv +anh +anS +aiR +api +ajM +aqC +ary +asK +aqC +auH +avK +auH +axP +ayU +aAr +aBj +aCx +oyF +oyF +oyF +aGj +onX +qXH +aIO +aJI +aKP +aLD +aNb +aKP +aPz +aQJ +aRL +aau +aTT +aXS +aRL +aWR +aXT +aYO +aZU +bbb +bbZ +bdk +beh +bfl +bdm +aJI +aDZ +bik +biY +bjS +bld +bmp +bld +bld +bpH +biY +bsB +bub +bvj +bwF +byo +bzP +bCj +bCi +bDr +bEv +bFP +bGV +bIc +bFO +bKu +bLE +bMJ +bEr +bEr +bPA +bNX +bQX +bKH +bKH +bKH +bKH +bKH +bKH +iyg +lIr +bQY +bXk +mbe +scz +kSF +kDJ +oYj +uMo +bXk +bXk +bXk +bXk +bXk +bXk +bXk +bXk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(105,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ajs +akb +akW +alK +amw +ani +jvi +aiR +aph +ajM +aqC +arz +asL +atJ +auH +auH +auH +axQ +ayV +aAs +aBj +gkR +aDB +aEw +aFv +ulu +aGX +jYe +aIO +aJI +aKQ +aKQ +aKQ +aKQ +aLL +aQK +aRL +aSE +aTU +aXU +aVV +aWS +aXU +aYP +aZV +bbc +bbc +bdl +bei +bfm +bgj +bhe +aDZ +bil +biY +bjT +ble +bmq +bmq +boC +bpI +biY +bsC +buc +jsj +bwG +byp +bzQ +bzQ +ioj +bsA +bEw +naS +bkh +bId +bFO +bEr +bEr +bEr +bEr +bOF +bDz +bDz +bCD +bDi +bUe +bTl +bBX +bBX +bBX +bBX +qXq +bBX +bXk +bZx +eQN +tcY +cam +cam +sjC +bXk +mci +cbX +ceq +mhl +ceq +ceq +bXk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(106,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +afJ +aaa +aaa +abI +ajs +akc +akX +alL +amx +anj +anU +aiR +apj +ajM +ajM +ajM +ajM +ajM +ajM +avL +auH +auH +ayW +auH +awR +awR +awR +awR +awR +awR +aAN +gNG +aIO +aJM +aKQ +aLE +aNc +aKQ +aLL +aQL +aRL +aSF +aXS +aXS +aRL +aWT +aXV +aXS +aZW +aXS +bca +aXS +bej +bfn +bdm +aJI +aDZ +bik +biY +bjU +bld +bld +bld +bld +bpJ +biY +bsC +bud +bvk +bwH +bua +bzR +bzR +bBb +bDr +bEx +bkh +bGX +bIe +bjc +bKv +bLF +bjc +bNS +bCz +bPB +bPB +bPB +bPB +bPB +bPB +bPB +uwX +uMe +lTC +bXd +cif +bXk +vRm +bpL +fQf +cbW +cbd +cdI +cri +cbX +cbX +cbV +cbV +ceq +ceq +bXk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(107,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ajs +akd +akX +alJ +amy +alJ +anV +aiR +apk +apQ +aqE +aqE +aqE +atK +auJ +aqE +awT +axR +ayX +aAt +aBk +aCy +aDC +aEx +aFw +awR +aHb +jYe +aIQ +aJL +aKR +aLF +aNd +wBg +aLL +aQM +aRL +aSG +aTW +aUW +aRL +kEW +aXW +aXS +aZX +bbd +aRL +bdm +bek +bdm +aRL +bhd +bhM +bim +biZ +bjV +blf +blf +blf +blf +bpK +biY +bsD +buc +kQy +bwI +byo +bzS +eFj +bCl +bsA +bEy +bFQ +buh +bIf +bjc +bKw +bLG +bjc +bNT +bCz +bPB +bQm +bQZ +bQZ +bQZ +bTm +bPB +bUG +uMe +hzc +bXe +krU +bXk +kyv +lWJ +iAx +bZA +cam +ous +bXk +ccR +cbX +ccQ +ccQ +ccQ +ccQ +bXk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +cmt +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(108,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ajs +ake +akX +alM +amz +ank +anT +ajs +apl +aoz +aqF +arA +arA +arA +arA +avM +awR +axS +ayY +aAu +aBl +aCz +aDD +aza +aza +awR +aHc +aHO +aIP +aJK +aKS +aLG +aNe +aKQ +aPA +aQN +aRN +aRN +aRN +aRN +aRN +aRN +aXX +aXS +aXS +pWT +bcb +bdn +bel +bdn +kEM +aJI +aDZ +bik +biY +bjW +blg +bmr +bnz +boD +bpH +biY +bsE +bue +tix +cSJ +bsA +bzT +bBc +bCm +bDr +bEz +wtE +buh +bIg +bjc +bKx +bLH +bjc +bNU +bCz +bPB +bQn +cCP +cCF +cCH +bTn +bPB +uwX +wMM +fzu +wiB +reV +bXk +sKa +iFI +oUa +vjd +oAw +cdK +bXk +bXk +bXk +bXk +bXk +bXk +bXk +bXk +aht +aht +aht +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +clw +clG +clG +clG +clw +clw +clw +clw +clw +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cny +adR +abI +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(109,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiR +ajs +ajs +akZ +alN +alN +alN +anW +ajs +apm +apR +aqG +arB +asM +atL +auK +avN +awU +axT +ayZ +aAv +aBm +aCA +aDE +aEy +aFx +awR +awR +aHP +aIO +aJN +aKQ +aKQ +aKQ +aKQ +aLL +aQN +aRN +aRN +aTX +aUX +aVW +aRN +aXY +aXS +aXS +pWT +bcc +aDZ +bem +aDZ +aDZ +aJI +aDZ +bik +biY +biY +biY +biY +biY +biY +bpM +biY +bsA +bua +rar +bwE +bsA +bzU +bBd +byo +bsA +bkb +bFR +bGY +bkb +bjc +bKy +bLI +bjc +bjc +bCz +bPB +bQo +cCF +bRa +bSy +bTo +bPB +bUH +bUH +bUH +bUH +bUH +bXk +bTE +cae +eta +mmv +cae +bTE +bXk +ceT +cfr +cfO +cgr +cgP +cgP +cgP +cgP +cgP +cig +cgP +cig +cgP +cig +cgP +cgP +cgP +cgP +cig +cgP +cgP +cgP +cgP +cig +cgP +cgP +cgP +cgP +cig +cgP +cgP +cgP +clC +clH +clP +kFm +clw +cmf +cmm +cmu +clG +cmB +xFl +cmL +cmR +cmV +cna +cmR +cnj +cmK +cnr +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(110,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aiR +abI +abI +abI +abI +abI +aoz +apn +aoz +aqG +arC +asN +atM +auL +avO +awV +axU +aza +aAw +aBn +aCB +aDE +aEz +aFx +aGk +awR +aHQ +aIO +aJO +aKT +aLH +aNf +aKT +aLL +aQO +aRO +aSH +aTY +aUY +aVX +aRN +aXZ +aYQ +aXS +ttS +bcd +bdo +ben +bfo +bfo +aJZ +aAL +bin +bja +bjX +blh +bms +bnA +boE +bpN +bre +bsF +bkh +jUV +bwK +byr +bzV +bBe +bCn +bDs +bEA +bFS +bGZ +bCn +bJo +bGZ +bLJ +bMK +bjc +bCz +bPB +bQp +cCH +cCF +cCP +bTp +bPB +bUI +bVD +bWn +bXf +bUH +bYI +jrG +caf +uun +cbY +cdc +gnq +bXk +ceU +eVy +bXk +bXk +bXk +bXk +tue +pjH +pjH +pjH +roc +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +mVM +tfw +pjH +pjH +uHG +clw +clw +clw +clQ +clX +rsZ +clw +cmg +cmn +cmv +clG +cmG +gpI +cmM +cmK +cmW +cnb +cmK +cnk +cmK +cns +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(111,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoz +ahr +aoz +aqG +arD +asO +atN +auK +avP +awW +axV +azb +aAx +aBo +aCB +aDF +aEA +aFy +aGl +awR +aHR +aIR +aJP +aKT +aLI +aNg +aKT +aPB +aQP +aRN +aRN +aTZ +aSK +aSK +aRN +aRN +bgk +gam +aZZ +aRN +aRN +beo +aRN +aRN +aJI +aDZ +bim +bjb +bjY +bli +bmt +bnB +boF +bpO +brf +bkg +buf +bvm +bwL +bys +bzW +bBf +bCo +bkh +bEB +bkh +buh +bIh +bkh +bKz +bnH +boN +cBL +bCz +bPB +bQq +bRb +bRG +bSz +bTq +bPB +bUJ +bVE +bWo +bXg +bXY +bYJ +bZy +bZy +cbc +cbZ +bZy +cdL +cer +ceV +cfs +dWp +cgs +cgQ +chv +mKk +cdm +cdm +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +clz +clA +clD +clJ +clR +clY +cmd +cmh +uzn +cmo +clG +clG +clG +gpI +cmN +cmK +cmK +cmK +cmK +cnl +cmK +cnt +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(112,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cdm +cdm +aqG +arE +arA +atO +auM +avQ +awW +axW +azc +aAy +aBp +aCC +aDG +aBm +aFz +aGm +awR +aHQ +aIO +aJO +aKT +aPz +aLL +aOw +aLL +aQP +aRN +aSI +aSK +aUZ +aSK +aWU +aRN +aYR +aYS +aYS +cpq +cpu +cpw +bfp +bgk +aJI +aDZ +bik +bja +bjZ +blj +bmu +bnA +boG +bpP +brg +bsG +brf +bvn +aaz +byt +bzX +bpP +bCp +bpP +bEC +bFT +bHa +bIi +bJp +bKA +bLK +bMM +bjc +bCz +bPB +bPB +bRc +bRH +bSA +bPB +bPB +bUK +bVG +bWp +bXh +bXZ +bYK +bZz +nAY +cbd +nRM +cam +cdM +bXq +xmE +ymb +bXk +ore +qWG +bXk +paU +dSp +cdm +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +iBJ +clB +hQz +clB +clS +clZ +tlw +cme +nMG +cmp +cmw +cmF +opz +qYS +cmK +cmK +cmX +cnc +cmK +cmK +cmK +cnu +cmB +abI +adR +abI +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(113,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +apS +ala +arF +arA +atP +auN +avR +awX +awU +awR +awR +awR +aCD +aDH +awR +awR +awR +awR +aHS +aIS +aJO +aKT +aLK +aNh +aKT +aPC +aQP +aRN +aSJ +aSK +aVa +aVY +aWV +aYa +aYS +aYS +bbg +cpr +bcf +beq +cpy +bgl +bhe +aDZ +bik +bja +bka +blk +bmv +bja +bjc +bpQ +bjc +bjc +bug +bvo +bwN +byu +bzY +wLo +bCq +wLo +bzY +bFU +bFU +bIj +bJq +bIj +bFU +bFU +bjc +bCz +bPC +bPB +bRd +bRI +bSB +bTr +bPB +bUL +cqV +bWq +bXi +bYa +bYL +bZA +caw +cbe +cca +cam +qtO +bXk +bXk +bXk +svA +mjK +mjK +mjK +aap +aac +aac +bXk +shH +shH +shH +shH +shH +shH +shH +shH +fon +fon +mau +fon +aht +aht +mau +fon +fon +aht +aht +ouv +clw +clw +clw +clT +cma +clL +clw +cmj +cmq +clG +clG +clG +cmK +cmO +cmK +cmK +cmK +cmK +cnm +cmK +cnv +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(114,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +apo +abI +aqH +arG +asP +atQ +auO +avS +awY +axX +azd +aAz +aBq +aCE +aDI +aEB +aEB +aEB +aHd +aHT +aIT +aJQ +aKT +aKT +aKT +aKT +aPD +aQQ +aRN +aSK +aUa +aVb +aVZ +aWW +aRN +bce +aYS +cpm +bcg +bdp +ber +cpz +bgk +aJI +aDZ +bik +bjc +bkb +bkb +bkb +bjc +boH +bkh +brh +bjd +cqm +bvl +bwO +byv +bzZ +bBg +bCr +bDt +bED +bFU +bHb +bIk +bJr +bKB +bKB +bFU +bNV +bCz +bPD +bPB +bRe +bRJ +bSC +bTs +bPB +bUM +bVH +bWr +bXj +qGZ +bYQ +bZD +caj +cbf +ccb +cah +cdO +ioF +ceX +aah +cfS +fFv +fmL +gXZ +kmd +lXJ +lXJ +bXk +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rnr +clE +xnm +clM +clU +cmb +mxy +clw +cmk +cmr +cmx +clG +cmH +cmK +cmP +cmK +cmY +cnd +cmK +cnn +cmK +cnw +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(115,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alO +aaa +aaa +aqI +arH +asQ +atR +auP +avT +awZ +axY +aze +aAA +aBr +aCF +aDJ +aEC +aDJ +aAA +myu +aHU +aIV +aJS +aKU +aNj +aNi +aOx +aNj +aQR +aRN +aSL +aRN +aRN +aWa +aRN +aRN +rxV +aYS +cpn +bch +bdq +bes +cpA +bgk +aJI +aDZ +bik +bjc +bkc +bll +bmw +bnC +boI +bpR +bri +bjd +cqm +bvl +bwP +byu +bAa +bBh +bCs +bDu +bEE +bFU +bHc +bIl +bJs +bKC +bLL +bFU +bNW +bOH +bPE +bQr +bRf +bRK +bSD +bQr +bQr +bUH +bUH +bUH +bUH +bYb +bYN +bZF +cak +cbg +cam +cam +cam +cam +mwG +nAs +cfT +wcs +ggg +qbp +qbp +gEo +dMG +bXk +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +clw +clN +qxq +clV +cmc +mDW +clw +cml +cms +cmy +clG +cmB +cmK +cmQ +cmU +cmZ +cne +cmU +cno +cmK +cnx +cmB +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(116,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anl +aht +aaa +aaa +aqI +arI +asR +atS +auQ +avU +axa +axZ +azf +aAB +aAB +aAB +aAB +aAB +aAB +arA +arA +aHV +aIO +aJO +aKT +aKT +aKT +aOy +aLL +aLL +aRP +aSM +aUb +aVc +aWb +aWX +aYb +aYV +cpl +bcf +cps +aYS +bep +cpB +bgk +aJI +aDZ +bik +bjd +bkd +bkh +cqa +bnD +boJ +bpS +bjd +aay +cqm +bvl +bwP +byv +bAb +bBi +bCt +bDv +bEF +bFU +bHd +bIm +bJr +bKD +bKD +bFU +bNX +bCz +bPE +bQs +bRg +bRL +bSE +bTt +bUf +bQr +bVI +bWs +bXk +bYc +bYO +bZA +xhI +cbh +cbh +cbh +cbh +cbh +hjD +aai +cfU +tIS +iCs +rPg +rPg +cBR +iCs +bXk +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +clw +clw +clw +clw +clw +clw +clw +clw +clw +clw +clw +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cmB +cnz +adR +abI +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(117,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anl +aaa +aht +aaa +aaa +aqI +arJ +asR +asS +asS +asS +asS +aya +azg +aAB +aBs +aCG +aDK +aED +aAB +aGn +axi +aHW +aIO +aJO +aAN +aGn +aKT +coF +aPE +aPE +aPE +aPE +aPE +qEN +bdv +aWY +aRN +aYU +bab +bbi +bbh +bdr +cpx +aRN +aRN +aJI +aDZ +bij +bje +bke +blm +bpT +bpT +bpT +bpT +bpT +bsH +blo +bvl +cqs +byu +bAc +bBj +bCu +bDw +bEG +bFU +bFU +bIn +bJt +qni +bFU +bFU +bFU +hZB +bPF +bTu +bRh +bRM +bSF +bTu +bUg +bUN +bVJ +bWt +bXk +bYd +bYP +bZF +rTd +wDl +vxr +irM +irM +qFu +cet +ulY +aak +cgu +cgU +aam +aaq +aac +jzE +bXk +bXk +bXk +bXk +bXk +aaa +fon +fon +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +cmz +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(118,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amA +aht +aht +aht +aht +abI +aqJ +arK +asS +atT +auR +avV +axb +ayb +azh +aAB +aBt +aCH +aCK +aEE +aAB +aGo +aHf +aHX +aIW +coz +aKV +abI +aKT +coG +aPE +aQS +aRQ +aSN +aUc +aPE +aWd +aXb +aRN +aYT +bac +baa +baa +baa +beu +bgk +bgn +aJI +aDZ +aHN +bjd +bkf +bln +bmx +bnE +boK +bpU +bpU +bsI +bui +bvp +bwQ +byv +bAd +bBk +bCv +bDx +bEH +bFU +bFU +bIo +bJu +bKE +bLM +bMN +bFU +bCz +bPE +bQu +bRi +bRN +bSG +bTv +bUh +bUO +bVK +bWu +bXk +bYe +bYQ +bZA +can +cbi +ccc +aac +cdR +aaf +bXk +bXk +sWW +cgv +lXb +cgv +uaP +cgv +ukp +cgV +cgv +cgv +gQf +bXk +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +abN +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +adR +aaa +adR +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(119,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acO +aby +aby +aby +aby +aby +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amB +aht +aaa +aaa +aaa +aaa +aqI +arL +asR +atT +auR +avW +axb +ayb +azi +aAB +aBu +aCI +aDL +aEF +aAB +aGp +aHf +aHX +aIW +coz +aKV +abI +aKT +coH +aPE +aQT +aRR +aSO +aUd +aVd +aWe +aXb +aRN +aYX +bad +bbl +bbl +bbl +bbl +aRN +bgo +bhd +aBI +aHG +bjf +cpX +cpZ +cqc +bnF +boL +bpV +bpV +bpY +bpY +bvq +bpX +bpY +bpY +bpY +bCw +bDy +bDy +bDy +bFU +bIp +bJv +bJx +bLN +bMO +bFU +bCz +bPE +bQv +bRj +bRO +bSH +bTw +bQr +bQr +bQr +bQr +bXk +bTE +bYR +bZA +can +cbj +aac +cbX +wcs +iyJ +cfa +aac +twv +hoS +sWj +dnS +hSC +jTU +fZK +pgH +pgH +uRk +ciG +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(120,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +abI +aaa +aaa +aaa +abI +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aqI +arM +asR +atU +auR +avX +axb +ayb +azj +aAC +aBv +aCJ +aDM +aEG +aAB +aGq +aHf +aHY +aIX +coB +aKV +abI +aKT +coH +aPE +aQU +aRS +aSP +aSP +aPE +aWf +aXb +aPE +aYY +bae +bbm +bae +bcm +bae +cpC +bgp +aJI +bhN +big +bjg +cpY +cqa +bmy +bnF +boM +bpV +brj +bsJ +buj +bvr +bwS +byw +bAe +bpY +bCx +bDy +bEI +bFV +bFU +bIq +bJw +bKF +bLO +bMP +bFU +bCz +bPE +bQw +bRj +bRP +bSH +bTx +bQr +bUP +bVL +bWv +bXl +bYf +bYS +bZA +can +qpS +aae +ccX +ccX +ceu +cbX +cfu +tlN +ncm +cCI +aan +aar +aao +meF +oKv +wbB +xzR +hQC +bXk +aht +fon +shH +fon +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(121,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +acP +acP +acP +acP +acP +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aqI +arN +asR +atT +auR +avY +axb +ayb +azk +aAB +aBw +aCK +aDL +aEH +aAB +aGr +aHf +aHX +aIW +coz +aKV +abI +aKT +coJ +aPE +aQV +aRT +aSQ +aUe +cpa +aWg +aXc +aPE +cpg +bah +bag +bah +bag +bex +bfr +bgq +aJI +aDZ +bih +bjh +bki +blp +bmz +bnG +boN +bpW +dHZ +bsK +buk +bvs +bwT +byx +bAf +bBl +bCy +bDy +bEJ +bFW +bHe +bIr +bJx +bJx +bLP +bMQ +bFU +bCz +bPE +bQx +bRj +bRQ +bSH +bTy +bQr +bUQ +bVM +bWw +bXm +bYg +bYT +bZB +caq +cbk +aac +ccY +cdT +ccY +cbX +aac +vlC +iej +qeY +fyO +fyO +fyO +qeY +oKv +wbB +wfP +hQC +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(122,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +acm +aaa +aaa +aaa +abI +aaa +acP +acP +acP +acP +adG +adS +adS +adS +adS +adS +aeJ +aeY +aft +afK +acP +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aht +aht +aht +abI +aqJ +arO +asS +atT +auR +avZ +axb +ayb +azh +aAB +aBx +aCL +aCK +aEE +aAB +aGs +aHf +aHX +aIY +coz +aKV +abI +aKT +coJ +aPE +aPE +aRU +aPE +aPE +aPE +aWh +aXd +aYd +aYZ +bag +cpo +cpt +cpv +bag +aPE +bgr +aJI +aDZ +aHN +bjd +bjc +bke +bkh +cqf +boN +bpX +brl +bsL +bul +bwU +bsK +bsK +bAg +bpY +bCz +bDy +bEK +bFX +bFU +bIs +bJy +bKG +bLQ +bMR +bFU +bCz +bPE +bQy +bRk +bRR +bSI +bTz +bQr +bUR +bVM +bWx +bXn +bYh +bYU +bZE +car +mgz +aac +cbX +wcs +wcs +cfd +bXk +tlN +ncm +lUO +mpd +hKp +hKp +cit +qeY +puw +vBE +hQC +bXk +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(123,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +acP +acW +adh +ads +adH +adT +aee +aee +aee +aev +kjK +aeZ +afu +afL +acP +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amB +aht +aaa +aaa +aaa +aaa +aqI +arP +asR +asS +asS +asS +asS +aya +azl +aAB +aBs +aCM +aDN +aEI +aAB +aGn +axi +aHZ +aDZ +aJO +aAN +aGn +aKT +aOz +aPF +aQW +aRV +aSR +aPE +aPE +cpe +aPE +aPE +aZa +bah +bag +bah +bdw +bey +cpC +bgs +aJI +aDZ +aHN +bji +bjd +blq +bkh +bkh +boN +bpW +brk +bsM +bum +bvt +bwV +byz +ooh +bpY +bCA +bDy +bEL +bDy +bFU +bFU +bJz +bFU +bFU +bFU +bFU +bCz +bPE +bQz +bRl +bRS +bSJ +bTA +bQr +bUS +bVM +bWy +bXo +bYi +bYV +bZA +cam +ccW +bXk +cda +wcs +wcs +wcs +eyj +eAH +lnr +qeY +fBZ +fBZ +fBZ +cgY +ciI +tdL +dHr +hQC +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(124,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +abI +abO +abV +acc +ach +abY +abW +acn +acw +abY +abV +acc +acG +acQ +acX +adi +adt +adI +adU +aef +aef +aef +aew +aeK +afa +afv +afM +acP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aqI +arQ +asR +atV +auS +awa +axc +ayc +azm +aAB +aAB +aCN +aAB +aAB +aAB +arA +arA +aHV +aDZ +aJO +aKT +aKT +aKT +aOA +aPG +aQX +aRW +aSS +aUg +aVf +aWi +mjn +aYe +aZb +bag +bbr +bbr +bdv +bez +cpC +bgp +bhf +cpH +cpN +cpT +bjd +blr +cqd +cqd +boO +bpV +brm +bsN +bun +gGA +bwW +byA +bAi +bpY +bCB +bDz +bEM +bFY +bDz +bDz +bJA +bKH +bKH +bKH +bNY +bOJ +bPE +bQA +bRm +bRT +bSK +bTB +bQr +bUT +bVN +bWz +bVN +bYf +bYW +oWu +cam +vli +ckJ +cey +cdW +wcs +cdW +eyj +kTR +mEu +wMX +dFJ +wYK +dFJ +uzh +nUQ +fym +hon +hQC +bXk +aht +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(125,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abW +acd +ace +ace +ace +aco +acx +acx +acz +acd +acH +acP +acY +adj +adu +adJ +adV +adV +cnD +adV +adV +aeL +afb +acP +acP +acP +agq +adX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aqI +arR +asT +atW +atW +atW +axd +axY +azn +aAD +aBr +axZ +aDO +aEJ +aDO +aAA +aHe +aHU +aIZ +aJT +aKY +aKY +aKY +aKY +aKY +aKY +aKY +coW +aPE +aVg +aWj +bah +aYf +aZc +bah +bbo +bco +bdw +beA +aPE +aPE +aJI +cpI +cpO +bjk +bje +bjd +bmA +bmA +bjd +bpY +bpY +bpY +bpY +pxD +jZG +bpY +bpY +bpY +bNZ +bva +bva +bva +bva +bva +bva +bva +bva +bva +bNZ +bva +bPE +bPE +bPE +bRU +bPE +bPE +bQr +bUU +bUU +bUU +bUU +bUT +bYX +bZA +cam +lfx +bXk +pCo +wcs +wcs +wcs +eyj +qkM +miw +qeY +prQ +prQ +prQ +dgj +psd +fxC +dZj +hQC +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(126,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abX +ace +ace +abO +abO +acp +abO +abO +acA +acx +acI +acP +acP +acP +adv +adK +adW +aeg +cnE +aeg +aex +aeM +afc +acP +afN +age +agr +adX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aht +aht +aht +abI +aqK +arG +asU +atX +auT +awb +axe +ayd +azo +aAE +aBy +aCO +aDP +aEK +aEK +aEK +aHg +aIa +aJa +aJQ +aKZ +aLQ +aNp +aOB +aPH +aQY +aKY +coW +aPE +aVh +bah +bah +aYg +cph +bag +bbp +bbp +bdv +bag +bfs +bgt +bhd +cpJ +cpP +aBI +aEY +bls +aBI +aBI +bmB +vKq +nTr +gDR +vzA +bvu +hIZ +tqO +mqp +cKV +iwe +qTV +xDj +blt +jCv +bOK +bEN +bKI +bEN +bHf +bOa +bOK +bPG +bQB +bBm +bRV +bSL +bTC +bUi +bUV +bVO +bWA +mCe +bYj +bYQ +bZA +cam +mgz +aac +tlV +wcs +wcs +dEy +bXk +tlN +ncm +puw +fyF +cZt +cZt +fjD +qeY +iTF +slJ +hQC +bXk +aht +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(127,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abY +ace +abO +abO +abO +acp +abO +abO +abO +acB +acJ +abO +acZ +adk +adw +adL +adV +adV +cnD +adV +adV +aeN +afd +afw +afO +agf +ags +adX +adX +adX +adX +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aaa +aaa +arA +arA +arA +arA +arA +aye +arA +aAF +aAH +aAH +aDQ +aAH +aAH +axi +axi +aIb +aJb +aJU +aLa +aLR +aNq +aNq +aPI +aQZ +aKY +coW +aPE +aVi +bah +aXh +aYg +aZd +beB +bbq +abU +bdx +beB +bft +bgu +aJZ +bhO +bio +aDZ +aGV +aDZ +aDZ +aDZ +jcT +xje +tTl +tTl +tTl +gkS +tTl +tTl +tTl +koz +dgg +phJ +phJ +lJI +bAk +bIt +bJB +bKJ +bJB +bMS +bOb +bJB +bPH +bQC +bJB +bRW +bSM +bTC +bUj +bUW +bVP +bWB +mCe +bYk +wjm +bZF +cbm +mgz +aac +oHa +oHa +eWi +cbX +aac +loL +cgx +qeY +fyO +fyO +fyO +qeY +cBS +cjt +kaR +hQC +bXk +aaa +fon +shH +fon +aht +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(128,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abY +ace +abO +abO +acj +acq +abO +abO +abO +acC +acK +acR +ada +adl +adx +adL +adX +aeh +aeh +aeh +adX +aeN +afe +afx +afx +cnC +adX +adX +adX +adX +alb +aaa +aaa +aaa +aaa +aaa +aaa +aht +amB +aht +aaa +aaa +aaa +aaa +aaa +ahi +atY +bcN +auU +atY +lQQ +ayf +lQQ +aAF +aBz +aCP +aDR +aEL +aAH +aGt +aAN +aHV +aDZ +aJO +aKZ +aLS +aNr +aOC +aPJ +aRa +aRX +aST +aPE +cpb +bah +bah +aYg +cpi +bag +bbr +bbr +bah +bag +bfs +bgt +aJI +cpK +cpQ +aDZ +aGV +blu +aDZ +aDZ +bjm +mhn +cqi +cqi +cqi +cqi +cqi +imE +kYM +mfC +fdQ +bmD +bmD +eRp +bAl +bIu +bJC +bKK +bCC +bMT +bOc +bmD +bPI +bmD +bRn +bRX +bSM +bTC +bUk +bUX +bVQ +bWC +mCe +bYl +bYO +bZA +cam +lrM +aae +cAQ +cAQ +cLw +cbX +cfu +jBn +oxw +meF +aao +aao +aas +cCI +cBS +iLh +liR +hQC +bXk +aht +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(129,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +abJ +abO +abY +acf +abO +abO +ack +acr +acy +abO +abO +acD +acL +acS +adb +adm +ady +adM +adY +aei +aei +aei +aey +aeO +aff +afy +aab +bIK +agt +agD +agR +ahh +ahi +aaa +aaa +aaa +aaa +aaa +aaa +aht +amC +aht +aaa +aaa +aaa +aaa +aaa +ahi +baH +auV +auV +awc +axg +ayg +azp +aAG +aBA +aCQ +aDS +pHo +aAH +aGu +aHh +aHV +aDZ +aJV +aLb +aLT +aNs +aNs +aPK +aRb +aKY +aQN +aPE +cpc +aWl +beB +aYh +cpj +bah +bbs +bcq +bag +beC +aPE +aPE +bhg +cpL +cpR +bjl +bGa +bKM +blt +cqh +bKM +cCl +cCl +cCl +tJr +tzH +tzH +byD +bAm +dhz +uxP +bDA +bEQ +bGa +bHp +sYQ +bJD +bBo +bBo +bMU +bmC +bOL +bPJ +bOL +bRo +bRX +bSN +bTD +bTC +bUY +bVR +bWD +bWD +bTE +bYY +bZA +cam +cbn +aac +cbX +wcs +cfP +cff +aac +cfX +vVO +iop +kWQ +oXq +qpd +tkL +tOD +tOD +ikO +hQC +bXk +aaa +fon +shH +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(130,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abY +ace +abO +abO +acl +acs +abO +abO +abO +acE +abY +acT +adc +adn +adz +adL +adX +aeh +aeh +aeh +adX +aeN +afg +afz +afz +agg +adX +adX +adX +adX +alb +aaa +aaa +aaa +aaa +aaa +aaa +aht +amD +aht +aaa +aaa +aaa +aaa +aaa +ahi +atY +atY +atY +atY +axh +axh +axh +aAH +aBB +aCR +aDT +aEM +aFA +aGv +aHi +aHV +aDZ +aJO +aKZ +aLU +aNt +aOD +aPL +aRc +aKY +aQN +aPE +aVj +aWm +bck +aYi +cpk +bag +bbp +bbp +bah +beD +cpC +bgv +aJI +cpM +cpS +cpU +bKM +blv +bmC +cqi +boP +bqb +pYw +gFo +cSK +duF +bxa +byE +bBp +wfG +bBp +bBp +bBp +bBp +bvD +bIv +cqz +bKM +bLR +bMV +bOd +bOL +bPK +bOL +bRp +bRY +bSM +pps +bUl +bUZ +bVS +bWE +bXk +bYm +bYZ +bZG +cax +cbo +ccc +aac +cdR +aag +bXq +bXq +cfY +xNy +smv +xNy +hGB +hSt +civ +civ +vsw +qRl +oKJ +bXk +aht +fon +fon +fon +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(131,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abY +ace +abO +abO +abO +act +abO +abO +abO +acB +acM +abO +add +ado +adA +adL +adZ +adZ +cnG +adZ +adZ +aeP +afh +afA +afQ +agf +ags +adX +adX +adX +adX +aFj +aht +aht +aht +aht +aht +alO +aht +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aAH +aBC +aCS +aDU +aEN +aAH +aGw +aHj +aHV +aDZ +aJW +aKY +aLV +aLV +aLV +aLV +aKY +aKY +aQN +aPE +aPE +aPE +aPE +aPE +aZf +bah +bag +bah +bag +beE +cpC +bgw +aJI +aDZ +aHN +bjn +bKM +blw +bmC +cqi +boQ +cCl +brq +byF +cCt +byF +bxc +nIU +bAo +bBq +bCE +bDB +bER +bBp +bHh +bIv +cqz +bBo +bLS +bmC +bmC +bOL +bPL +bOL +bRo +bRZ +bSO +bTF +bUm +bVa +bVT +bWF +bXp +bYn +bZa +bZF +cal +cbp +cci +kTj +kTj +qhE +loz +frj +aal +eyj +uIB +eyj +eyj +uIB +eyj +eyj +bXk +bXk +bXk +bXk +aht +aht +aht +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(132,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abV +ace +ace +abO +abO +act +abO +abO +ace +ace +ach +acU +acU +acU +adB +adN +aea +aej +cnH +aej +aez +aeQ +afi +acU +afR +agh +agu +agE +agS +agS +ahs +ahR +ahs +ahs +ahs +ahR +ala +aht +aaa +aht +aaa +aaa +app +apT +apT +apT +apT +apT +apT +aaa +aht +aaa +aaa +aAH +aBD +aCS +aDV +aEO +aAH +aGw +aHj +aHV +aDZ +aJR +anX +aLW +aNu +aOE +aPM +anX +aPB +aQN +aUf +aVk +aWn +aXk +aYj +aZg +ban +bbt +bcr +bck +beF +aPE +bgx +aJI +aDZ +aHN +bKM +bBo +blx +bmC +bnI +boR +cCl +brr +bsR +bup +bvw +bxd +byG +bAp +bBr +bCF +bDC +bES +bBp +bHi +bIv +cqz +bBo +bLT +bmC +bmC +bmC +bmC +bmC +bRo +bmC +bQD +pps +bUn +bVb +bVU +bWG +bXq +bYo +hXK +bZI +hXK +cbq +cbd +cam +cam +cam +haA +aaj +upc +wIo +hyh +upc +voh +pBJ +wIo +voh +cdm +aaa +aaa +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(133,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abW +acd +ace +ace +ace +ace +ace +ace +ace +acd +acw +acU +ade +adp +adC +adO +adZ +adZ +cnG +adZ +adZ +aeR +afj +acU +acU +acU +agq +adX +abI +abI +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +aht +apT +aqL +arS +asV +aua +auW +awd +axi +aaa +aaa +aAH +aBE +aCS +aDW +aEP +aFA +aGv +aHk +aHV +aDZ +aJO +aLc +aLX +aNv +aOF +aPN +anX +aRY +aQN +aUf +aVl +aWo +aXl +aUf +aUf +aPE +bbu +bcs +bag +beG +aPE +bgy +aJI +aDZ +bih +bjp +bkm +bly +bmD +bJI +boS +bqb +brs +bsS +buq +bvx +bxe +byH +bAq +bBs +bCG +bDD +bET +bBp +bHj +bIx +cqz +bKM +bLU +bMW +bOe +bOM +bPM +bQD +bRq +bCC +bSP +bTG +bTQ +bVc +bUo +bWH +bXk +bTE +bZc +ueX +cCU +bZJ +wbF +cCV +ceb +epV +qLI +aaj +eiV +upc +dsz +eiV +eiV +uaO +voh +eiV +cdm +aaa +aaa +fon +fon +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(134,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +abI +abO +abX +acg +aci +abY +abW +acu +acw +abY +abX +acg +aci +acU +adf +adq +adD +adP +aeb +aek +aek +aek +aeA +adF +afk +ael +afS +acU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +apT +aqM +arT +asW +aub +auX +awe +axj +aaa +aaa +aAH +aBF +aCT +aDX +aEQ +aFB +aGx +aHl +aHV +aDZ +aJV +aLd +aLY +aNw +aOG +aPO +anX +aRZ +aQN +aUf +aVm +aWp +aXm +aYk +aUf +bao +bbv +bct +bah +aZe +bdy +bdo +aJI +wVC +aHN +blt +bmC +bmC +bmH +byK +boS +bqc +brt +bsR +bur +bvy +bxf +byI +bAr +bBt +bCH +bDE +bEU +bBp +bHk +bIv +bJE +bJN +bLV +bMX +bOf +bON +bJN +bQE +bRr +bSa +bJN +bJN +bJN +bVd +bJN +bJN +bJN +bJN +frj +pYh +pYh +pYh +pYh +pYh +pYh +pYh +pYh +hUw +nqu +nsJ +gBb +nsJ +nsJ +gBb +nsJ +nsJ +dsz +aht +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(135,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aaa +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +abO +acU +adg +adr +adE +adQ +aec +ael +ael +ael +aeB +aeS +afl +ael +afS +acU +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +apT +aqN +arU +asX +auc +auY +awf +axk +aaa +abI +aAH +aBG +aCU +aDY +aER +aAH +aGy +aAN +aHV +aDZ +aJO +aLc +aLZ +aNx +aOH +aPP +anX +aSa +aQN +aUf +aUf +aWq +aXn +aYl +aUf +bap +bbw +bcu +bag +aXb +bdy +bdo +bhd +aBI +aHG +bjr +bko +blz +bmI +byK +boT +bqb +bru +bsT +bus +bvz +bxg +mdL +bCJ +bBu +bCI +bDF +bEV +bBp +bHl +bIv +bJF +bKO +bLW +bMY +bOg +bOO +bPN +bQF +bRs +bSb +bLW +bTH +bUp +bVe +bUp +bWI +bXr +bKQ +udl +bZK +abI +abI +abI +abI +aaa +aaa +aaa +uaO +wIo +nsJ +gBb +nsJ +nsJ +gBb +nsJ +nsJ +hyh +aaa +aaa +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(136,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +acv +aaa +aaa +aaa +acF +acN +acV +acV +acV +adF +acU +acU +acU +acU +acU +acU +acU +afm +afB +afT +acU +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +apT +aqO +arV +asY +aud +auZ +awg +axl +aaa +axi +aAH +aAH +aCV +aAH +aAH +aAH +aAN +aAN +aIc +aGV +aJP +anX +aMa +aNy +aOI +aPQ +anX +aSb +aSV +aNj +aVn +aWr +aXo +aYm +aUf +baq +bbx +bcv +bah +beH +aPE +bgz +aJI +aDZ +bip +bKM +bkp +blA +bmJ +bnL +boU +cCl +cCl +cCl +cCl +bqb +bxh +bqb +fRs +fRs +bAo +bAo +fRs +bBp +bHm +bIy +bJG +bKP +bLX +bMZ +bOh +bOP +bPO +bRz +bRt +bSc +bSQ +bTI +bUq +bVf +bMf +bWJ +bXs +bJN +cui +bJP +bJP +bJP +bJP +bJP +abI +abI +aht +pBJ +wIo +nsJ +gBb +nsJ +nsJ +gBb +nsJ +nsJ +dsz +aht +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(137,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +aaa +abI +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +acU +acU +acU +acU +acU +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +apT +aqP +arW +asZ +aue +apT +awh +axk +abI +awd +aAI +aBH +aCW +aDZ +aAN +aFC +aGz +aAN +aId +aDZ +aJR +anX +anX +aNz +aOJ +anX +anX +aKT +aSW +aKT +aUf +aUf +aXp +aUf +aUf +aPE +aPE +bcw +bdy +aPE +aPE +aDZ +aJI +aDZ +biq +bGa +bkq +blB +bkn +bnM +bsU +bqd +brv +cqk +but +bsU +bxi +byJ +bAt +bBw +bCK +bDG +bEW +bAt +bHg +cqw +cqD +bKO +bLW +bNa +bOi +bOQ +bPP +bQG +bRu +bSd +bTO +bTJ +bMf +bMf +bMf +bMf +bXt +bYp +eAZ +bZL +caz +cbs +cbs +bJP +aaa +aaa +aaa +uaO +wIo +nsJ +gBb +nsJ +nsJ +gBb +nsJ +nsJ +hyh +aaa +aaa +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(138,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acO +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +abI +aaa +aaa +aaa +abI +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cBU +lcZ +lcZ +apT +apT +apT +apT +apT +apT +awi +axk +awd +awd +aAJ +aBI +aCX +aBI +aES +aBI +aBI +aEY +aHG +aBI +aJX +aBI +aMb +aNA +aOK +aMb +aRd +aMb +aSX +aUi +aVo +aMb +aXq +aMb +aZh +bar +aMb +aSX +aMb +aBI +aEY +bgA +bhe +aDZ +bip +bKM +bkr +blC +cqe +bnN +byC +bqe +byC +cql +byC +bvA +bxj +hiY +bAt +bBx +bCL +bDH +bEX +bGb +bHn +bIA +bJH +bJN +bJN +bNb +bOj +bPQ +bRx +bRA +bSS +bST +bJN +bTK +bMf +bMf +bMf +bMf +bXu +bLW +cui +bMi +caA +cbt +ccm +bJP +aaa +aaa +aaa +pBJ +swg +hyh +pBJ +hyh +pBJ +hyh +pBJ +hyh +cdm +aht +aht +fon +shH +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(139,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aby +aby +aby +aby +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +lcZ +apW +apV +apU +aqQ +arX +ata +auf +ava +awj +axm +ayh +azq +aAK +aBJ +aCY +aEa +aEa +aEa +aEa +aHm +aIe +aJc +aJY +aEa +aEa +aJY +aOL +aPR +aPR +aPR +aPR +aUj +aJI +aDZ +aHN +aDZ +aDZ +aDZ +bby +aDZ +aDZ +aDZ +aGV +aDZ +bhh +bhM +bir +bBo +bks +blD +bko +bko +bko +bqf +bko +bsV +buu +bvB +bxk +byK +bAt +bBy +bCM +bDI +bEY +bGc +bHo +bRX +cqE +bJN +bLY +bNc +bOk +bPQ +bRy +hka +bQH +bSe +bPQ +bTL +bMf +bMf +bMf +bWM +bXv +bVh +poP +bZL +caB +cbs +cbs +bJP +aaa +aaa +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +fon +fon +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(140,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cBU +aoB +apr +apV +aqR +arY +atb +aug +cBU +awk +axn +axn +axn +aAL +aAL +aCZ +aAL +aAL +aAL +aAL +aGU +aCZ +aJd +aJZ +aAL +aMc +aNB +aOM +aPS +aRe +aMc +aHE +aUk +aJZ +aMc +aXr +aMc +aZi +aMc +bbz +aMc +aPS +aAL +aGU +aAL +aJZ +aAL +bis +aAN +bkt +bkt +bku +bkt +bkt +bkt +bku +bkt +bkt +bvC +bxl +cqt +bAu +bAu +bAt +bAt +bAu +bAu +bHp +cqx +bJJ +bKQ +bLZ +bNd +bOl +bOT +bPR +bPQ +bPQ +bQI +bPQ +rNi +bMf +bMf +hjk +pmB +bXw +dJk +cui +bJP +bJP +bJP +bJP +bJP +aaa +aaa +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(141,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiS +aiT +aiS +aiT +aiS +aiT +aiS +aiT +aiS +aiT +aiS +aaa +lcZ +apU +apV +apW +aqS +arZ +atc +auh +avb +awl +awd +abI +awd +aAM +aBK +aDa +aEb +aAM +aFD +aDa +aAN +aIf +aJe +aKa +aLe +aLe +aNC +aON +aLe +aLe +aPW +aSY +aUl +aUs +aPW +aLf +aLf +aLf +aLf +aLf +aEj +aEj +aEj +aEj +bgB +aJI +aDZ +aHN +bjm +bku +blE +bmL +bnO +boX +bqg +brw +bsW +bku +cqp +bxm +byL +bAv +bsU +cqk +bsU +bsU +bGd +bHq +bIC +bJK +bJN +bMa +bNe +bOm +bOU +bPS +bSf +bUp +bTM +bUp +bTN +bMf +bMf +bVZ +bOX +bUA +bYp +eAZ +bZL +caC +cbu +cbu +bJP +aht +aht +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +aht +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(142,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiT +plA +oMN +akf +gxe +akf +eqD +oMN +vlF +tvj +aiT +aaa +cBU +lcZ +lcZ +cBU +cBU +asa +atd +aui +avc +awm +awd +abI +axi +aAN +awd +awd +aAN +aAN +awd +awd +aAN +aIg +aJf +aKb +aLe +aMd +aND +aOO +aPT +aRf +aSc +aSZ +aOT +aVp +aWs +aPW +aYn +aZj +bas +aLf +bcx +bdz +aFi +bfu +aDZ +aJI +bhP +aHN +bjm +bkv +blF +bmM +bmM +bmM +bqh +brx +bsX +buv +bvE +bxn +byM +bAw +bBz +cqv +bBz +bBz +bBz +bHr +bID +bJL +bKR +bMb +bNf +bQJ +bOV +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVZ +bOX +bXx +bVi +cui +bMi +caD +cbv +ccn +bJP +aaa +aaa +fon +shH +shH +shH +shH +shH +shH +shH +shH +shH +shH +fon +aaa +aht +shH +shH +fon +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(143,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiS +qPB +iqc +ngp +cBr +cBs +tap +gna +klV +xbJ +aiS +aaa +aaa +aaa +aaa +aaa +cBU +cBU +cBU +cBU +cBU +awd +axi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awd +aHN +aIU +aJI +aLe +aMe +aNE +aOP +aPU +aRg +aSd +aTa +aOT +aVq +aWt +aXs +aYo +aVu +bat +aLf +bcy +qAM +aEj +aEj +bgC +bhi +bhQ +bip +bjm +bku +blG +bmN +bnP +bnP +bqi +bmM +bsY +bku +bvF +bxo +byN +bAx +bko +bko +bko +bko +bko +bHs +bBA +bJM +bJN +bMc +bNg +bOn +bOX +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVY +bUs +bVg +bVm +poP +bZL +caE +cbu +cbu +bJP +aht +aht +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +fon +aaa +aht +shH +fon +fon +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(144,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiS +aiS +aiS +aiS +epJ +uaC +cBv +cBw +gNv +nnh +sqh +aiT +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +awd +aHN +aIU +aJH +aLe +aMf +aNF +aOQ +aPV +aRf +aSc +aSZ +aUm +aVp +aWu +aXt +aYp +aPY +bau +aLf +aFi +aFi +beI +beI +bgD +bhj +beI +bit +beI +bkt +blH +bmO +bnQ +bnQ +bqi +bry +bsZ +bkt +bvG +bxp +byO +bAy +bBB +bCN +bDK +bEZ +bGe +bHt +bIE +bJN +bJN +bMd +bPT +bOn +bOX +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVZ +bOX +kas +bNm +cui +bJP +bJP +bJP +bJP +bJP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fon +fon +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(145,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +cBk +jhD +cBo +alQ +xjg +cBw +noC +aiS +aiS +aiS +aiS +aiS +aiT +aiS +aiS +aiS +aiS +aiS +aiS +apX +avd +avd +apX +ayi +ayi +apX +aBL +aBL +apX +aET +rYC +aET +aET +aHN +aIU +aJI +lAs +lAs +iKb +aOR +iKb +lAs +lAs +aTb +aOT +aVp +aWu +aXu +aYq +aPY +bav +aLf +aFi +jBh +beI +bfv +bgE +bhk +bhR +biu +bju +bkt +blI +bmO +bnQ +bnQ +bqi +brz +bta +bkt +bvH +bxq +byP +bAy +bBo +bCO +bBo +bCO +bBo +bCO +bBo +bJN +bKS +bMe +bNh +bOo +bOX +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVZ +bWO +bXA +bQO +poP +bZM +caF +cbw +cby +bJP +aaa +aaa +aaa +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(146,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiU +jHP +aju +ajt +alQ +mnG +tap +tap +aiS +anY +apt +sbk +aiS +alP +cBB +apu +ale +ale +asb +coe +apX +ave +awn +apX +ayj +azr +apX +aBM +aDb +apX +oFo +jOB +qbZ +aET +aHN +aIU +aJI +lAs +aMg +aNH +aOS +aPX +aRh +aSe +aTc +aOT +aVp +aWu +aPW +aYr +aOV +baw +bbA +bcz +bdB +beI +bfw +bgF +bhl +bhS +bhS +bhS +bkw +blJ +bmP +bnR +bnR +bqj +brA +btb +bkt +bvI +bxr +byQ +bBo +aaa +aht +aht +aaa +aht +aht +aaa +bJN +bKT +bWM +bNi +bQK +bOZ +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVZ +bMf +bXB +bNm +cui +bMi +caG +cbx +cco +bJP +aht +aht +aht +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(147,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +kkk +akh +alc +alR +amF +pzF +tap +anm +ajv +ajv +aju +ajv +cBA +aiS +akn +apX +apX +asc +atf +apX +avf +awo +apX +ayk +azs +apX +aBN +aDc +apX +aET +cor +aET +aET +hFy +aJh +bhe +lAs +aMh +aNI +fwl +dMB +aRi +aSf +aTd +aUn +aVr +aWu +aLf +aYs +aZk +bax +aLf +aFi +bdC +beI +bfx +bgG +bhm +bhT +biv +biv +bkt +blK +bmQ +bmM +bmM +bmM +brB +btc +bkt +bvJ +bxs +byR +bAA +bAA +bCP +bAA +bCP +bAA +bCP +bAA +bHw +bKU +bOr +bPU +bRw +bPa +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bMf +bVY +bWP +bXy +bQO +poP +bZN +caH +cby +cby +bJP +aaa +aaa +aaa +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(148,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +cBl +cBm +cBp +alS +amG +mnG +cPO +aiS +aiS +aiS +aiS +aiS +aiS +aiS +akn +apX +aqT +asd +atg +auj +avg +awp +apX +ayl +azt +apX +aBO +aDd +apX +aEU +aFE +aGA +aHn +aIi +aJi +aKe +klb +aMi +aNJ +fwl +aPZ +aRj +lAs +aTe +aUo +aVs +aWv +aLf +aPW +aZl +aPW +aLf +aLf +bdC +beI +bfy +bgH +bhn +bhU +biw +biw +bkt +blL +bmR +bnS +boZ +bqk +brC +btd +bkt +bvK +bxt +byS +bAA +bBC +bDN +bDL +bFa +bGf +bCR +bIF +bHw +bKV +bOX +bUv +bQL +bPa +bMf +bMf +bMf +bMf +bSU +bTT +bUv +bKX +bTR +bUt +bXC +bYs +bVW +bYw +bYw +cBT +bYw +bYw +bYw +aht +aht +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(149,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +aiS +akg +aiS +aiS +akg +aiS +aiS +aiS +aob +eaw +ajv +ajv +cnX +aiS +apv +apX +aqU +ase +ath +apX +atf +awq +apX +atf +azu +apX +atf +aDe +apX +aFF +vuP +aGB +aET +aHN +aIU +aJI +lAs +aMj +aNK +fwl +dMB +dMB +iKb +aTf +aUp +aVt +aVt +aVt +aVt +aZm +aPY +bbB +aLf +bdD +beI +bfz +bgI +bho +bfz +beI +beI +bkt +bkt +bkt +bkt +bkt +bkt +bkt +bkt +bkt +bvL +bxu +byT +bAB +bBD +mzE +bDM +bFb +bGg +bHu +bIG +bJO +bKW +bMg +bNj +bOp +bPV +bPV +bPV +bPV +bPV +bUw +bUw +bUw +bVj +bTS +bUu +bXD +bYt +bZf +bZO +caI +cbA +ccp +cdg +cbz +aaa +aaa +mau +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(150,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +wMF +cBn +cBq +ajv +ajv +iEU +aiS +akj +ale +ale +ale +ale +ale +ale +apw +apX +aqV +asf +ati +auk +avh +awr +axo +aym +awr +aAO +aBP +com +apX +aET +lKL +aET +aET +aHN +aIU +aJI +lAs +aMk +aNL +aOU +aQa +aRk +aSg +aTg +aUq +aVu +aPY +aPY +aPY +aZn +aPY +bbC +aLf +bdC +beI +bfA +bgJ +bhn +bhV +beI +aKq +bkx +blM +bmS +bnT +bpa +bql +brD +bte +buw +bvM +bxv +byU +bAA +bBE +bCQ +bCR +bGh +bGh +bCR +bIH +bHw +cqG +bOX +bNk +bOq +bPd +bPW +bPW +bPW +bPd +bPW +bPW +bPW +bPd +bUr +bWQ +bXE +bYu +bZg +bZP +caJ +cbB +ccq +cdh +bYw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(151,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +aiS +aiS +aiT +aiT +aiS +aiS +aiS +cBx +aiS +aiS +aiS +aiT +aiT +aiT +aiS +apX +cod +asg +atj +apX +avi +aws +coi +aBQ +aDf +aDf +aBQ +con +cop +aEW +kIO +aGC +cos +coy +aJj +aJI +lAs +aMl +aNM +dse +aQb +aRl +aSh +aTh +aUr +aVv +aWw +aXv +aYu +aOT +aPY +bbD +aLf +bdD +beI +beI +beI +bhp +beI +beI +bjv +bkx +blN +bmT +bnU +bpb +bqm +brE +btf +bux +bvN +bxw +byV +bAA +bBF +bCQ +bDO +bCR +bCR +bCR +bII +bHw +bKY +bMh +bNl +bQM +bPe +bPX +bSR +bRB +bSh +bSV +bTP +bUy +bVk +bWb +bUz +bXF +bYv +bZh +bZQ +caK +cbC +ccr +cdi +cec +ceA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(152,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aiT +akl +aiT +aaa +aaa +aaa +aaa +aaa +aaa +apX +apX +apX +apX +apX +avj +awt +axp +ayn +azv +col +aBR +coo +apX +aGV +aDZ +aGD +aDZ +aDZ +aJk +aJH +lAs +aMm +lAs +aOW +lAs +lAs +lAs +eeQ +aUs +aLf +eex +aLf +aLf +aUl +baz +aLf +aLf +bdE +bcz +bcz +bcz +bhq +aNR +bix +ygZ +bkx +blM +bmU +bnT +bpc +bqn +brF +bkx +buy +bvO +bxx +byW +bAA +bBG +xEx +bDP +bFd +bGi +bHv +bIJ +bHw +bKZ +bOR +bWR +bWc +bPf +bPY +bQO +bPY +bPf +bPY +bQO +bWc +bVl +bWc +bWR +bXG +bYw +bZi +bZR +caL +cbD +bYw +cdj +bYw +bYw +aaa +gYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(153,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajx +akm +alf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apX +apX +aul +avk +awu +axq +ayo +azx +aAP +avk +aDg +aEc +aEY +cot +aBI +aBI +aBI +aJl +aKf +lAs +aMn +lAs +aOX +lAs +aRm +aLg +aTi +aUt +aVw +aWx +aXw +aYv +aZo +aTm +bbE +bbE +bbE +bbE +bbE +bbE +aEj +aEj +biy +bjw +bjw +bjw +bjw +bjw +bjw +bjw +bjw +bjw +bod +bvP +bxy +byX +bAA +bAA +bCS +bDQ +bCS +bAA +bHw +bHw +bHw +bLa +abI +bNn +abI +bLa +abI +bNn +abI +bLa +abI +bNn +abI +bLa +abI +bNn +abI +aht +bZj +bZS +caM +cbE +thA +cdk +ced +bYw +aht +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(154,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajy +akn +alg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ash +ash +ash +avk +awv +axr +ayq +azy +aAQ +avk +aDh +aEd +aEd +aEd +aEd +aEd +aIj +aJm +aKg +cDa +aMo +cDa +cDa +cDa +cDa +aLg +wDZ +aUu +aVx +aVx +aVx +aYw +aZp +aZt +bbF +bcA +bdF +beJ +bfB +dps +aZv +aUC +biz +bjw +bky +blP +bmV +bnV +bpd +bqo +brG +btg +fjs +bvQ +bxz +byY +bAC +bBH +bCT +bDR +bCT +bGj +buz +abI +bJP +bLb +bMi +bLb +bJP +bLb +bMi +bLb +bJP +bLb +bMi +bLb +bJP +bLb +bMi +bLb +bJP +aaa +bYw +bZT +caN +bZT +bYw +cdl +oGw +bYw +aaa +mau +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(155,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +ajy +ako +alg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aqY +asi +atk +izB +avk +awv +axt +coj +cok +ayr +aBS +aDi +aEd +aEZ +aEZ +aEZ +aEd +aEd +aJn +aEd +aEd +aMp +aNN +aOY +aQc +aRn +aSi +aTk +aUv +aVy +aWy +aXx +aYx +aZq +baA +bbG +bcB +bdG +beK +bfC +bbE +aTx +aEj +aTx +bjw +bkz +blQ +bmW +bnW +bpe +bqp +brH +brH +buA +bvR +bxA +byZ +bAD +bBI +bCU +bDS +bwb +bGk +buz +abI +bJP +bLc +bMj +bNo +bJP +bPg +bPZ +bQP +bJP +bSj +bSW +bTV +bJP +bVn +bWe +bWT +bJP +aht +bYw +bZU +caO +cbF +bYw +gmZ +bYw +bYw +aht +fon +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(156,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +aaa +aaa +aaa +ajy +akn +alg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +asj +atl +aum +avk +awv +axu +ays +azA +avk +avk +aDj +aEe +aFa +aFG +aGF +aGF +aGF +aFI +aKh +aEd +aMq +aNO +aOZ +aQd +aRo +aSj +aTl +aUw +aTm +aTm +aTm +aYy +aZo +baB +bbH +bcC +bdH +beL +bfD +bbE +aTx +aEj +aTx +bjw +bkA +blR +bmX +bnX +eSL +bqq +bpf +bth +wBb +bvS +bwa +bza +bAE +bBJ +bBJ +bDT +bFf +bGl +buz +abI +bJP +bLd +bOS +bLe +bJP +bPh +bQa +bPh +bJP +bSk +bSX +bSk +bJP +bVo +bWf +bVo +bJP +aht +bYw +igB +caP +fRr +qVk +cdm +cdm +bYw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(157,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +ajz +akk +alh +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +apX +apX +apX +avl +fIu +epj +aIh +azA +dbi +dbi +aDk +aEd +aFb +aFH +aGG +aHo +aIk +aJo +aGF +aEd +aMr +aNO +aPa +aNO +aRp +aSk +aTm +aUt +aVz +aWz +aVz +aYz +aZo +baC +bbI +bbI +bdI +bdI +bdI +bbI +bhr +bbI +aTx +bjw +bkB +blS +bmY +bnY +bpg +bqr +bqs +bti +wBb +bvT +bxC +bzb +bAF +bAF +bCV +bDU +bCV +bAF +bHy +aaa +bJP +bLe +bMk +bLe +bJP +bPh +bQb +bPh +bJP +bSl +bSY +bSk +bJP +bVo +bWg +bVo +bJP +aaa +bYw +bYw +caQ +bYw +bYw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(158,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +akp +aiT +aaa +aaa +aaa +aaa +aaa +aaa +aaF +aaF +aaF +aaF +atn +atn +aww +axv +ayt +azB +axv +axv +atn +aEd +aEd +aFI +aGH +aEd +aEd +aEd +aKi +aEd +aMs +aNO +aPb +aQe +cDa +cDa +aTn +aUx +aVA +aTm +aTm +aTj +aZr +baD +bbI +bcD +bdJ +beM +bfE +bgK +bhs +bbI +aTx +bjw +bjw +bjw +bjw +bjw +bph +eYr +bqs +brJ +wlK +bvU +bxD +bzc +bAF +bBK +bCW +bDV +bFh +bGm +bHy +aaa +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +bJP +abI +aaa +bYw +caR +bYw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(159,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +cBy +aiS +aaF +aaF +aaJ +aaJ +aaJ +aaF +aaF +abw +abz +abH +abl +axw +abg +axw +ayu +azC +axw +aBT +atn +aEf +aFc +aFI +aGF +aHp +aIl +aEd +aKj +aEd +aMt +aNP +aPb +aNO +aNP +tLP +aTq +aSk +aTm +aTm +aTm +aYy +aZs +baE +bbJ +bcE +bdK +beN +bfF +bgL +bht +bbI +biC +pdW +bjw +blT +bmZ +bnZ +bpi +edl +bqs +btk +buB +eNq +eNq +urP +bAF +bBL +bCW +bDW +kmn +bGn +bHy +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +abI +nbu +hbl +nbu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +ckK +cju +cju +cju +cju +cju +cju +ckK +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(160,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +akn +ajv +aaH +aaN +abc +abm +abm +abq +abm +abm +abA +abT +abK +abL +abM +abP +abR +azC +axw +aBU +atn +aEg +aFd +aFJ +aGF +aEd +aEd +aEd +aEd +aEd +aMu +aNO +aPc +aQf +aRq +cDa +aTp +aSk +aTm +aTm +cCB +aYA +aZt +aZp +bbK +bcF +bdL +beO +bfG +bgM +bhu +bbI +aFi +aTx +bjw +blU +bna +bqs +bqs +bqt +brK +btl +dkR +bvV +cxt +bzd +wnJ +bBM +bCX +bDX +bFi +bGo +bHy +aaa +aby +aaa +aby +aaa +aby +aaa +aaa +bzy +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +cju +ckK +ckK +cju +cju +cju +cju +cju +cju +cju +ckK +ckK +ckK +cju +ckK +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(161,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaE +aaF +aaR +aaL +aaO +aaO +aaO +aaO +aaO +aaW +aaF +abb +abd +abh +abQ +abS +azD +aAS +aat +atn +aEh +aFe +aFI +aGF +aHq +aIl +aEd +aKk +aLh +aMv +aNQ +aNO +aQg +aNP +cDa +aTq +aSk +aVB +aWA +aXy +aYB +cCT +baF +bbI +bcG +bdM +beP +bfH +bfH +bhv +bbI +aEj +bjx +bjw +blV +bnb +bqs +bqs +bqt +brL +btl +buC +bvW +bxG +bze +vTN +bBN +bBN +bDY +bFj +bGp +bHy +abI +aby +aht +aby +aht +aby +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +ckK +cju +ckK +cju +ckK +ckK +cju +cju +cju +ckK +cju +ckK +cju +cju +cju +ckK +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(162,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaG +aaF +aaS +aaL +abn +aaO +aaO +aaO +aaO +aaW +aaY +aba +axw +abg +axw +axw +axw +axw +aBW +atn +aEd +aEd +aFK +aEd +aEd +aEd +aEd +cCX +cDa +cDa +cDa +coL +coL +coL +cDa +aTr +aUy +aPd +aUy +aXz +aLg +aLg +aLg +bbI +bbI +bbI +bdI +bfI +bdI +bbI +bbI +aGP +bjx +bjw +blW +bna +pbI +bqs +bqt +brM +btl +gDZ +bvV +bxH +bzd +wnJ +bBO +bCZ +bDX +bFk +bGq +bHy +aaa +aby +aaa +aby +aaa +aby +aaa +aaa +aaa +acO +aby +aby +aby +aaa +acO +aby +bzy +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +cju +ckK +ckK +ckK +ckK +cju +cju +cju +ckK +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(163,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaF +aaS +abj +aaO +aaO +aaO +aaO +aaO +aaW +aaY +awB +abe +abi +axw +axw +axw +axw +aBX +atn +aEi +aEd +aFL +aGI +aHr +aEd +aJp +cCY +aLi +aMw +aEj +aaa +aaa +aaa +aLg +aTs +aUz +aPd +aWB +aXA +aLg +aaa +aaa +aaa +aaa +aaa +bdI +bfJ +bdI +aaa +aEj +pKd +bjx +bjw +qDJ +vmG +bnZ +pDP +nBL +bqs +xgG +cKA +bvY +bvY +fkH +bAF +bBP +bCW +bDX +bFl +bGr +bHy +aaa +aht +aaa +aht +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +ckK +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(164,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaI +aaS +aaL +abo +aaO +abr +aaO +aaO +abB +atn +atn +avm +avm +axy +avm +avm +axy +avm +avm +atn +atn +aFM +aGJ +aGJ +aDl +aEk +cCZ +aLj +aMx +aEj +aaa +aaa +aaa +aLg +aTr +sQt +aPd +sQt +aXz +aLg +aaa +aaa +aaa +aaa +aaa +bdI +oPy +bdI +aaa +aEj +aEj +bjx +bjw +bjw +uAZ +boe +boe +bqv +bqs +brJ +buD +bvZ +bxJ +tAK +bAF +bBQ +bDa +bEa +bFm +bGs +ubW +ubW +xIx +bHy +bHy +bHy +bOs +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +cju +ckK +ckK +cju +ckK +cju +ckK +ckK +cju +cju +cju +ckK +cju +ckK +ckK +ckK +cju +cju +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(165,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaK +aaS +aaL +aaO +aaO +aaO +aaO +aaO +abC +atn +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aEd +aEd +aEd +aEd +aEj +aEj +aKq +aJs +aEj +aaa +aaa +aaa +aaa +aaa +aUA +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bfK +aaa +aaa +aaa +aEj +obj +aLi +tim +eXo +bof +boa +bqw +brH +btp +buE +bwa +efu +bzh +bAF +bBR +bDb +bEb +bFn +bGt +bHz +bIM +bJQ +bIM +bMl +bNp +bOt +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +ckK +cju +ckK +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +ckK +ckK +clF +cju +cju +ckK +ckK +cju +cju +cju +cju +ckK +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(166,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaI +aaS +aaL +aaO +aaO +aaO +aaO +aaO +aaW +avm +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aFN +aGK +aHs +aEj +aJq +aKn +aKn +aMy +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bjx +aFi +bjw +nJI +bog +bpo +lAR +bqs +bti +buF +bwb +bxK +bzi +bAF +bBS +bDc +bEc +bGu +bGu +bGu +bIL +bJR +bLf +bMm +bNp +bOt +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +ckK +cju +cju +cju +cju +ckK +ckK +cju +cju +cju +ckK +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +cju +ckK +cju +cju +cju +ckK +cju +cju +cju +ckK +clv +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(167,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +aaF +aaF +aaT +aaL +aaO +aaO +aaO +aaO +aaO +aaW +avm +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aFO +aGL +aHt +aEj +aJr +aEj +aLk +aLk +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bjx +aEj +bjw +xPa +boh +bpp +bqx +bqs +brJ +buG +bwc +bxL +bzj +bAF +bBT +bDd +bEd +bFp +bGv +bHA +bIM +bJS +bIM +bMn +bNp +bOt +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +ckK +cju +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +ckK +ckK +cju +cju +ckK +cju +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +ckK +ckK +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(168,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +akn +ajv +aaF +aaU +aaL +aaO +aaO +abs +aaO +aaO +aaW +avm +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aFP +aGM +aFi +bfu +aJs +aKo +aLl +aMz +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bjx +aFi +bkD +vxp +boc +bnc +tdp +oDP +bts +buH +bjw +bjw +bjw +bHy +bHy +bHy +bHy +bHy +bGw +nsD +rPW +kfh +bHy +bHy +bHy +bOs +mZE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cjv +cju +cju +cju +cju +ckK +cju +cju +cju +cju +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +cju +cju +cju +ckK +ckK +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +ckK +ckK +clv +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(169,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiT +akn +aaQ +aaF +aaV +aaM +aaP +aaP +abt +aaP +aaP +abD +atn +aur +aur +aur +aur +aur +aur +aur +aur +aur +aur +atn +aFQ +aGN +aGN +aEj +aJt +aFi +aFi +aEj +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bjx +aEj +bjw +bjw +bjw +bjw +bkF +brR +btt +brR +bkF +ldQ +lNW +mSc +sci +bwm +glf +bFr +qtA +khk +bIN +dAF +bCV +bCV +bCV +bOu +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +cjv +cjv +cjx +cjx +cjx +cju +cju +ckK +cju +cju +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +cju +cju +cju +ckK +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(170,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +sbk +aaF +aaX +aaZ +aaZ +abk +abp +abu +abx +abE +atn +atn +avm +avm +vzz +avm +avm +vzz +avm +avm +atn +atn +aEj +aEj +aEj +aEj +aJs +aKp +aFi +aMA +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +aEj +aEj +aEj +aEj +aEj +aEj +aEj +oTl +vzP +vzP +iWV +aFi +bpq +bnj +brT +bxF +wkZ +bnj +bwm +bwm +lWy +gXg +bwm +pNy +bFs +bGx +bHC +cxb +bJT +wOS +bMp +bPl +bcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ahi +cjw +cjV +ckt +cjx +cjx +cjx +cju +cju +ckK +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(171,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +akn +ajv +aaF +aaF +aaF +aaF +aaF +aaF +aaF +aaF +abF +aaF +aiS +atn +awC +axz +ayw +azE +aAT +aBY +atn +aEj +aFf +hUt +aFi +aFi +aFi +aJs +aFi +aFi +aFi +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEl +bdQ +beR +aUC +aUC +eCw +aUC +aUC +qHI +aKq +aEj +wAI +vzP +vzP +bqA +brU +bxF +buK +dqw +spz +spz +spz +wFT +bwm +veM +bFt +bGy +bHD +fBz +gMm +bCV +bCV +bCV +ahi +aht +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +ahi +cjx +cjx +cjx +cjx +cjx +cjx +cjx +ckK +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +ckK +cju +ckK +ckK +ckK +ckK +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +cju +cjx +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(172,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +aaD +ale +ale +ale +ale +ale +ale +ale +abv +ale +abG +ale +ale +avn +awD +axA +ayx +azF +aAU +aBZ +aDl +aEk +aEk +aEk +aEk +aEk +aEk +aJv +aKn +aKn +aMB +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +aTx +aEj +aKq +aEj +gfi +aEj +bkF +bkF +bkF +bkF +bkF +bkF +bkF +bkF +brV +ume +bkF +bkF +bkF +bkF +bxP +nev +hgD +bEf +bFu +noM +bHE +bJV +bLh +bMq +aht +aht +aaa +aht +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +ahi +cjx +cjx +cjx +ckL +cjx +clj +cjx +ckK +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +ckK +ckK +clv +clv +clv +ckK +ckK +ckK +ckK +cju +ckK +cju +ckK +ckK +cju +cjx +cnp +cnq +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(173,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aiS +aiS +aiS +aiS +aiS +aiT +aiS +aiS +aiS +aiS +aiS +aiT +aiS +aiS +atn +atn +avm +avm +avm +avm +atn +atn +aEj +aEj +aEj +aEj +aHu +aEj +aEj +aKq +aEj +aJs +aEj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEl +aTx +aFi +aFi +aEj +bhz +lEn +pnU +pnU +bnd +taT +lWH +wfs +pfP +bqC +brW +vMx +ofN +gdL +iLl +bkF +bwm +xlA +bwm +bAF +bAF +bGA +bAF +bAF +bAF +bAF +bAF +uaO +dsz +xQk +hxI +xQk +hxI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +abI +ahi +cjx +cjx +cjx +cjx +cjx +cjx +cjx +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +cju +ckK +ckK +cju +cju +ckK +ckK +cju +cju +ckK +ckK +ckK +ckK +ckK +ckK +cju +cju +ckK +cju +cju +cju +cjx +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(174,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +abI +abI +abI +aEj +aFg +aFR +aGO +aFi +aGO +aFi +aFi +aEj +aJs +aEj +aEj +aEl +aEl +aEl +aEl +aEj +aEj +aht +ccs +aEj +aEl +aEl +aEj +aEj +aTx +aFi +aFi +aEj +bjD +lEn +uwb +bjB +bkH +mql +bpn +hEX +brO +bzg +brX +csu +xzp +ugC +gdJ +bkF +lWy +cDB +lWy +tSL +lWy +bAG +bwm +rBh +gjv +tfx +xlg +mJp +nqu +mJp +nqu +tlp +ilE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +ahi +cjw +cjx +cjx +ckt +cjx +cjx +cju +cju +ckK +cju +ckK +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +ckK +ckK +cju +ckK +ckK +ckK +cju +cju +ckK +ckK +cju +cju +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(175,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aEj +aFh +aEj +aGP +aEj +aIp +aEj +aEj +aEj +aMC +aNR +aNR +aNR +aNR +aNR +aTu +aUB +aEl +aaa +aEj +aZv +aUC +aUC +bcH +aUC +aZw +beS +aFi +aEj +gfi +lEn +biD +biD +bnd +tdB +bpn +thW +bpn +bqE +brW +btu +xpr +ihk +pXg +bkF +kPi +cDB +hxn +uvq +bFx +bIP +bNq +tSL +hMx +tfx +xlg +mhK +wIo +mhK +mhK +mhK +hyh +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +cjv +cjv +cjx +cjx +cjx +cju +ckK +ckK +cju +ckK +ckK +ckK +ckK +cju +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(176,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEl +aFi +aEj +aEj +aEj +aIq +aJw +aKr +aEj +aMD +aPf +aQj +aRs +aLi +aSl +aTv +aGO +aEj +aEj +aEj +aTx +aFi +aGO +bcI +aFi +aFi +aFi +bfM +aEj +bhz +lEn +vYN +vYN +bnd +blZ +mQm +ilD +edJ +bqF +brW +btv +nuv +ihk +cPT +bkF +syQ +cDB +rFq +obP +bFy +bGB +bwm +bwm +bwm +rNB +bwm +bwm +rNB +bwm +rNB +bwm +cdm +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cjv +cju +cju +cju +cju +cju +cju +ckK +cju +ckK +cju +cju +ckK +ckK +ckK +ckK +ckK +cju +cju +ckK +ckK +ckK +cju +cju +cju +ckK +ckK +ckK +ckK +cju +ckK +cju +cju +cju +cju +cju +cju +ckK +cju +cju +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(177,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEl +aFi +aEj +aaa +aEj +aEl +aEj +aEj +aLm +aLm +aLm +aQk +aRt +aLm +aLm +aTw +aUC +aVE +aUC +aUC +aZw +aEj +aEj +hSM +aEj +aEj +kIo +bfN +aEj +gfi +aEj +bkF +bkF +bkF +xWl +hPN +nxT +ueP +ost +nOY +dgz +jxl +tXn +hfZ +bkF +kkQ +rKL +lWy +lWy +bFz +bIR +fwr +eMC +bwm +aht +bwm +ikB +iVJ +lWy +typ +bwm +aht +aby +aht +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +ckK +ckK +cju +ckK +cju +cju +ckK +ckK +cju +ckK +cju +cju +cju +ckK +cju +ckK +cju +cju +cju +ckK +cju +ckK +ckK +cju +cju +cju +cju +cju +ckK +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(178,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aEj +bZV +aEj +aaa +aaa +aaa +aaa +aLn +aNT +xer +aQo +aPg +aRu +srZ +aLm +aTx +aEj +aEj +aEj +aEj +aYC +baG +cfQ +bcJ +mvm +baG +aEj +aEj +aEj +bhB +fwI +fwI +bjE +bkF +bnj +bnj +bnj +bnj +brR +qVP +qtF +jwe +brR +bnj +bkF +bkF +bkF +bkF +bwm +bwm +bwm +bwm +lQn +bwm +rNB +bwm +wTO +hPU +xsO +rEh +rNB +aaa +aby +aaa +aed +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +ckK +ckK +cju +cju +ckK +cju +ckK +ckK +ckK +clv +ckK +ckK +cju +cju +cju +ckK +ckK +cju +cju +ckK +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(179,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abN +aaa +aaa +aaa +aaa +aaa +ahi +ahi +ahi +aaa +aaa +aaa +aaa +aLm +aLm +aNU +phS +dqY +aRv +sZh +aLm +aTx +aEj +aav +aFi +aFi +aFi +baG +bbL +bcK +bdR +baG +bfP +bfP +aEj +aEj +aEj +aKq +gfi +bkF +blX +blX +bpr +oSc +bsa +btw +buI +bwe +bxM +bzk +bAH +blX +blX +bkF +kgR +bFB +bwm +svN +bIQ +uek +lWy +bwm +qnT +lJr +lWy +maW +bwm +aht +aed +aht +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +ckK +ckK +ckK +ckK +ckK +cju +cju +ckK +ckK +cju +ckK +ckK +cju +cju +cju +ckK +ckK +cju +cju +ckK +ckK +cju +cju +ckK +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(180,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLm +aME +eFG +phS +dqY +aRw +sqQ +aLm +aTy +aEj +aEj +aHu +aEj +aEj +baG +bbM +bcL +bdS +baG +kKI +aFi +hOz +aEj +oRX +biF +bjF +bkF +bnh +blX +blX +kNf +bsb +btw +buJ +bwe +bxN +bzl +blX +bBU +bDe +bkF +dMO +lWy +rxQ +lWy +bIQ +lWy +lWy +mES +lWy +lWy +lWy +lWy +bwm +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +ckK +ckK +cls +ckK +ckK +cju +cju +ckK +cju +cju +ckK +cju +cju +cju +cju +ckK +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(181,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLo +aMF +aNV +phS +cvf +aQn +sqQ +aSm +aTz +aEj +aVG +aFi +aFi +aYD +baG +rWE +uXH +rWE +baG +eZA +tDn +aFi +nZw +aFi +gfi +aFi +bkF +bni +blX +blX +hvW +igE +btx +dxc +bwf +bxO +bzm +blX +blX +blX +bkF +hTl +bFC +bwm +nzD +uoj +bwm +lWy +bwm +dMI +lWy +lWy +jDA +bwm +aht +aby +aht +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +ckK +cju +ckK +cju +ckK +ckK +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(182,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLo +aMG +aNX +phS +xer +aRy +aSn +aSn +aTA +aEj +aVH +aFi +aXC +aYE +baG +rWE +oCX +rWE +baG +vzT +gUb +aFi +aEj +gSI +gfi +bfM +bkF +bnj +bnj +bnj +bnj +bnj +itl +buL +cuc +bnj +bnj +bnj +bnj +bnj +bkF +bwm +bwm +bwm +bIQ +bwm +bwm +bwm +bwm +oEG +ndI +lWy +cDB +rNB +aaa +aby +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(183,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLm +aMH +aNY +aPi +aQp +aRz +daY +aSo +aTB +aEj +aVI +aFi +aXC +aYF +baG +sut +oCX +rWE +baG +dsv +dLY +xyl +aEj +aKq +gfi +ybX +bkF +blX +blX +bpr +bqG +bsa +btw +buM +bwh +bxM +bzn +bAH +blX +blX +bkF +qIO +jXA +bwm +bIQ +hXt +bwm +aht +bwm +hFp +abf +abf +ijU +bwm +aht +aed +aht +aed +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cju +cju +cju +cju +cju +cju +cju +cju +cju +cju +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(184,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLm +aLm +aLo +aLm +aLo +aLm +aLm +aLm +aLm +aEj +aEj +aEl +aEl +aEl +baG +rWE +atZ +rWE +baG +aEj +aEj +aEj +aEj +aEj +ntj +bfM +bkF +bnh +blX +blX +bqH +bsb +btw +buN +bwe +bxQ +xxO +blX +bBU +bDe +bkF +dmP +bFD +bwm +gxK +pWF +bwm +aht +bwm +bwm +rNB +bwm +rNB +bwm +aaa +aby +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(185,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +abI +aaa +aaa +abI +abI +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aht +aEl +gfi +ybX +bkF +bni +blX +blX +bqI +bsc +btx +buO +bwf +bxR +bzp +blX +blX +blX +bkF +aaA +lWy +fKj +lWy +bIQ +bwm +aed +aaa +aht +aaa +aht +aaa +aed +aaa +aaa +cFB +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(186,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aht +aEl +gfi +fNv +bkF +bnj +bnj +bnj +bnj +bnj +bsf +buQ +buU +bnj +bnj +bnj +bnj +bnj +bkF +sZu +lWy +bwm +bwm +bIQ +bwm +aby +aht +aby +aby +aby +aby +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(187,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aht +aEl +gfi +bfM +bkF +blX +blX +bpr +bqJ +bsa +gIG +buN +bwe +bxM +bzq +bAH +blX +blX +bkF +wfc +sAK +bwm +hXt +bIQ +rNB +aby +aaa +aed +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(188,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aht +aEl +gfi +ybX +bkF +bnh +blX +blX +bqK +bsd +gIG +buN +bwe +bxS +bzr +blX +blX +bDe +bkF +bwm +bwm +bwm +bwm +bIQ +bwm +aed +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(189,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +bBW +aaa +aEj +aEj +ntj +fNv +bkF +blX +blX +blX +bqL +bse +xjT +btE +buW +bxT +bzs +blX +blX +blX +bkF +ueV +heC +uug +cDB +bIQ +bwm +bwm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(190,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +cFB +aaa +aEl +bnl +gfi +aFi +bkF +bkF +bkF +bkF +bkF +bkF +bkF +qdi +bkF +bkF +bkF +bkF +bkF +bkF +bkF +doo +efU +eMC +cDB +dVJ +jDA +rNB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(191,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aEl +iCe +vsk +lje +rxa +bnl +bok +aFi +aFi +aEj +btA +uXG +mtI +bwm +kFu +tSL +cDB +cDB +aad +dtm +bwm +jFw +xpD +jQh +bwm +bwm +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(192,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aEl +wOf +bhB +fwI +eCK +wQU +xah +fwI +fwI +bqO +btB +btF +gIC +bwn +vRi +dKs +oKa +rgn +jRG +gmp +bwm +rNB +bwm +bwm +bwm +aht +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(193,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aEj +aEj +aEj +aEl +aEj +bnn +bom +aEj +bkF +bkF +xKc +vgp +oBb +bkF +bkF +bwm +bwm +bwm +euQ +vuQ +bwm +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(194,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aEj +aEj +aEl +bkF +bkF +kFD +eIL +mTS +pMG +iPz +sXR +sXR +pwS +bwm +vtl +bwm +bwm +aaa +aby +aht +aed +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(195,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aed +aby +aby +aby +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bnd +kRK +cPy +dir +mTS +ufa +oNE +oep +bnd +mlr +sEB +jEX +rui +bwm +aht +aby +aht +aby +aht +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +xGc +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(196,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bnd +qcD +xxw +lhA +lFh +ufa +taA +qcH +bnd +nNN +bwm +lWy +bwm +bwm +aaa +aby +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(197,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcR +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aby +aaa +bnd +qYq +sNz +nqV +oSL +hUJ +riW +jtf +bnd +aht +bwm +vHf +bwm +aaa +aht +aby +aht +aed +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(198,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcS +bdU +beU +beU +beU +beU +beU +beU +beU +beU +abI +aby +aaa +bnd +lGS +nIm +oEW +iuM +wXu +cOp +lGS +bnd +aaa +ahi +ahi +ahi +aht +aaa +aed +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(199,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcS +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +aTE +aaa +aby +aaa +bkF +dmT +tqX +nEb +pWm +uvo +mMz +dmT +bkF +aaa +aaa +aaa +aaa +aby +aht +aby +aht +aby +aht +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(200,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aed +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aed +aaa +bkF +bkF +bkF +pbR +blX +naq +bkF +bkF +bkF +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aed +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(201,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcS +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aed +aht +bkF +blX +blX +blX +blX +blX +blX +blX +bkF +aht +aed +aht +aed +aaa +aaa +aed +aaa +aby +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(202,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcS +bdU +beU +beU +beU +beU +beU +beU +beU +bkP +abI +aby +aaa +xKc +blX +blX +iPj +tfP +iPj +blX +blX +xKc +aaa +aby +aaa +aht +aaa +aaa +aby +aaa +aht +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(203,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcS +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +aby +aaa +bkF +blX +blX +blX +tuy +blX +blX +eQR +bkF +aaa +aby +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(204,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +bkF +bkF +bkF +xKc +bkF +xKc +bkF +bkF +bkF +aaa +aed +aaa +aby +aht +aht +aht +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(205,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +ajA +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcS +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aby +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aby +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(206,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcS +bdU +beU +beU +beU +beU +beU +beU +beU +bkP +abI +aby +aed +aby +aby +aby +aby +aby +aby +aed +aby +aby +aht +aby +aht +aed +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(207,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcS +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +aed +aaa +aaa +aht +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aht +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(208,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(209,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcS +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(210,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcS +bdU +beU +beU +beU +beU +beU +beU +beU +bkP +abI +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(211,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcS +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +aed +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(212,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aed +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(213,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +bcS +aaa +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aTC +aaa +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(214,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +abI +aTD +aUD +aUD +aUD +aUD +aUD +aUD +aUD +bbP +bcT +bdU +beU +beU +beU +beU +beU +beU +beU +bkP +abI +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(215,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aby +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +bcU +aaa +aTE +aTE +aTE +aTE +aTE +aTE +aTE +baI +aaa +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(216,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(217,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aed +aby +aby +aby +aby +aby +aby +aby +aby +aby +cFB +bcQ +cFB +aby +aby +aby +aby +aby +aby +aby +aby +aby +aby +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(218,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abI +abI +bcV +abI +abI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(219,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +cFB +abI +cFB +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(220,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aby +aby +aby +aby +aby +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(221,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(222,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(223,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(224,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(225,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(226,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(227,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(228,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(229,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(230,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(231,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(232,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(233,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(234,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(235,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(236,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(237,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(238,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(239,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(240,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(241,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(242,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(243,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(244,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(245,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(246,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(247,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(248,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(249,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(250,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(251,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(252,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(253,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(254,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +"} +(255,1,1) = {" +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC +rmC "} From 27ecbdd6f149d41b6790e762bcd2b8501402b2d8 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 16:22:14 -0800 Subject: [PATCH 14/52] why did i do this --- code/modules/mob/say_vr.dm | 89 ++++++++++++++++++++++++++++++++++---- 1 file changed, 80 insertions(+), 9 deletions(-) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 471bd9939e..76c45b5d0e 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -86,15 +86,6 @@ proc/get_top_level_mob(var/mob/S) else if(!params) var/subtle_emote = stripped_multiline_input_or_reflect(user, "Choose an emote to display.", "Subtler" , null, MAX_MESSAGE_LEN) if(subtle_emote && !check_invalid(user, subtle_emote)) - var/type = input("Is this a visible or hearable emote?") as null|anything in list("Visible", "Hearable") - switch(type) - if("Visible") - emote_type = EMOTE_VISIBLE - if("Hearable") - emote_type = EMOTE_AUDIBLE - else - alert("Unable to use this emote, must be either hearable or visible.") - return message = subtle_emote else return FALSE @@ -111,6 +102,77 @@ proc/get_top_level_mob(var/mob/S) user.visible_message(message = message, self_message = message, vision_distance = 1, ignored_mobs = GLOB.dead_mob_list, omni = TRUE) +///////////////// SUBTLE 3: DARE DICE + +/datum/emote/living/subtler_table + key = "subtler_table" + key_third_person = "subtler_table" + message = null + mob_type_blacklist_typecache = list(/mob/living/brain) + +/datum/emote/living/subtler_table/proc/check_invalid(mob/user, input) + if(stop_bad_mime.Find(input, 1, 1)) + to_chat(user, "Invalid emote.") + return TRUE + return FALSE + +/datum/emote/living/subtler_table/run_emote(mob/user, params, type_override = null) + if(!locate(/obj/structure/table) in range(user, 1)) + to_chat(user, "There are no tables around you.") + return FALSE + if(jobban_isbanned(user, "emote")) + to_chat(user, "You cannot send subtle emotes (banned).") + return FALSE + else if(user.client && user.client.prefs.muted & MUTE_IC) + to_chat(user, "You cannot send IC messages (muted).") + return FALSE + else if(!params) + var/subtle_emote = stripped_multiline_input_or_reflect(user, "Choose an emote to display.", "Subtler" , null, MAX_MESSAGE_LEN) + if(subtle_emote && !check_invalid(user, subtle_emote)) + message = subtle_emote + else + return FALSE + else + message = params + if(type_override) + emote_type = type_override + . = TRUE + if(!can_run_emote(user)) + return FALSE + + user.log_message("[message] (TABLE-WRAPPING)", LOG_SUBTLER) + message = "[user] [user.say_emphasis(message)]" + + var/list/show_to = list() + var/list/processing = list() + var/safety = 25 + for(var/obj/structure/table/T in range(user, 1)) + if(safety-- <= 0) + to_chat(user, "Table scan aborted early, some people might have not received the message (max 25)") + break + if(get_dist(T, user) > 7) + continue // nah + processing |= T + for(var/mob/M in range(T, 1)) + show_to |= M + var/obj/structure/table/other + other = locate() in get_step(T, NORTH) + if(other) + processing |= other + other = locate() in get_step(T, SOUTH) + if(other) + processing |= other + other = locate() in get_step(T, WEST) + if(other) + processing |= other + other = locate() in get_step(T, EAST) + if(other) + processing |= other + + for(var/i in show_to) + var/mob/M = show_to + M.show_message(message) + ///////////////// VERB CODE /mob/living/verb/subtle() set name = "Subtle" @@ -128,3 +190,12 @@ proc/get_top_level_mob(var/mob/S) to_chat(usr, "Speech is currently admin-disabled.") return usr.emote("subtler") + +///////////////// VERB CODE 3 +/mob/living/verb/subtler_table() + set name = "Subtler Around Table" + set category = "IC" + if(GLOB.say_disabled) //This is dumb but it's here because heehoo copypaste, who the FUCK uses this to identify lag? + to_chat(usr, "Speech is currently admin-disabled.") + return + usr.emote("subtler_table") From b885abb69dd761d80404fadec12dacbfc8b222c5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 16:28:10 -0800 Subject: [PATCH 15/52] okay --- code/modules/mob/say_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 76c45b5d0e..2123400816 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -170,7 +170,7 @@ proc/get_top_level_mob(var/mob/S) processing |= other for(var/i in show_to) - var/mob/M = show_to + var/mob/M = i M.show_message(message) ///////////////// VERB CODE From 97be4a5d12b5361caf3835863e9f7211ab41635a Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 17:34:31 -0700 Subject: [PATCH 16/52] Update say_vr.dm --- code/modules/mob/say_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 2123400816..11fd42c3b1 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -153,7 +153,7 @@ proc/get_top_level_mob(var/mob/S) if(get_dist(T, user) > 7) continue // nah processing |= T - for(var/mob/M in range(T, 1)) + for(var/mob/living/M in range(T, 1)) // no ghosts/cameramobs show_to |= M var/obj/structure/table/other other = locate() in get_step(T, NORTH) From 36125c609d64e69a3d58d7933c419662da84cc99 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 18:41:31 -0800 Subject: [PATCH 17/52] ily putnam --- code/modules/mob/say_vr.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index 2123400816..5eb8dae286 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -147,6 +147,9 @@ proc/get_top_level_mob(var/mob/S) var/list/processing = list() var/safety = 25 for(var/obj/structure/table/T in range(user, 1)) + processing |= T + for(var/i in processing) + var/obj/structure/table/T = i if(safety-- <= 0) to_chat(user, "Table scan aborted early, some people might have not received the message (max 25)") break From 0cd0770549067924f78223674a6f639dfd7b0a3c Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 21:32:12 -0800 Subject: [PATCH 18/52] fix --- code/datums/elements/flavor_text.dm | 22 +++++++++++++++++++ code/modules/mob/living/carbon/human/human.dm | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index ae139104f0..128496abf5 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -13,6 +13,8 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code var/save_key /// Do not attempt to render a preview on examine. If this is on, it will display as \[flavor_name\] var/examine_no_preview = FALSE + /// Examine FULLY views. Overrides examine_no_preview + var/examine_full_view = FALSE /datum/element/flavor_text/Attach(datum/target, text = "", _name = "Flavor Text", _addendum, _max_len = MAX_FLAVOR_LEN, _always_show = FALSE, _edit = TRUE, _save_key, _examine_no_preview = FALSE) . = ..() @@ -30,6 +32,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code always_show = _always_show can_edit = _edit save_key = _save_key + max_length = _max_length examine_no_preview = _examine_no_preview RegisterSignal(target, COMSIG_PARENT_EXAMINE, .proc/show_flavor) @@ -71,6 +74,9 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code examine_list += "\[[flavor_name]\]" return var/msg = replacetext(text, "\n", " ") + if(examine_full_view) + examine_list += "[msg]" + return if(length_char(msg) <= 40) examine_list += "[msg]" else @@ -113,6 +119,18 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code var/datum/element/flavor_text/F = choices[chosen] F.set_flavor(src) +/mob/proc/set_pose() + set name = "Set Pose" + set desc = "Sets your temporary flavor text" + set category = "IC" + + var/list/L = GLOB.mobs_with_editable_flavor_text[src] + var/datum/element/flavor_text/carbon/temporary/T = locate() in L + if(T) + to_chat(src, "Your mob type does not support temporary flavor text.") + return + T.set_flavor(src) + /datum/element/flavor_text/proc/set_flavor(mob/user) if(!(user in texts_by_atom)) return FALSE @@ -167,3 +185,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code texts_by_atom[user] = "" if(user.dna) user.dna.features[save_key] = "" + +/datum/element/flavor_text/carbon/temporary + examine_full_view = TRUE + max_len = 1024 diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 3aa26de5cf..43ec23db18 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -43,7 +43,7 @@ AddComponent(/datum/component/mood) AddComponent(/datum/component/combat_mode) AddElement(/datum/element/flavor_text/carbon, _name = "Flavor Text", _save_key = "flavor_text") - AddElement(/datum/element/flavor_text, "", "Temporary Flavor Text", "This should be used only for things pertaining to the current round!") + AddElement(/datum/element/flavor_text/carbon/temporary, "", "Set Pose (Temporary Flavor Text)", "This should be used only for things pertaining to the current round!") AddElement(/datum/element/flavor_text, _name = "OOC Notes", _addendum = "Put information on ERP/vore/lewd-related preferences here. THIS SHOULD NOT CONTAIN REGULAR FLAVORTEXT!!", _always_show = TRUE, _save_key = "ooc_notes", _examine_no_preview = TRUE) /mob/living/carbon/human/Destroy() From 5bd20acc1dbadb27da47dd1e573a49f60cce82f8 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 21:44:37 -0800 Subject: [PATCH 19/52] fix --- code/datums/elements/flavor_text.dm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 128496abf5..0a9171a90a 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -32,7 +32,6 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code always_show = _always_show can_edit = _edit save_key = _save_key - max_length = _max_length examine_no_preview = _examine_no_preview RegisterSignal(target, COMSIG_PARENT_EXAMINE, .proc/show_flavor) @@ -40,7 +39,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code if(can_edit && ismob(target)) //but only mobs receive the proc/verb for the time being var/mob/M = target LAZYOR(GLOB.mobs_with_editable_flavor_text[M], src) - M.verbs |= /mob/proc/manage_flavor_tests + add_verb(M, /mob/proc/manage_flavor_tests) if(save_key && ishuman(target)) RegisterSignal(target, COMSIG_HUMAN_PREFS_COPIED_TO, .proc/update_prefs_flavor_text) @@ -189,3 +188,10 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code /datum/element/flavor_text/carbon/temporary examine_full_view = TRUE max_len = 1024 + +/datum/element/flavor_text/carbon/temporary/Attach(datum/target, text, _name, _addendum, _max_len, _always_show, _edit, _save_key, _examine_no_preview) + . = ..() + if(. & ELEMENT_INCOMPATIBLE) + return + if(ismob(target)) + add_verb(target, /mob/proc/set_pose) From fa6537a092239f65c9cebc9ebd55d64c8114deb7 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 21:53:38 -0800 Subject: [PATCH 20/52] fix --- code/datums/elements/flavor_text.dm | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 0a9171a90a..769ea5510b 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -124,7 +124,10 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code set category = "IC" var/list/L = GLOB.mobs_with_editable_flavor_text[src] - var/datum/element/flavor_text/carbon/temporary/T = locate() in L + var/datum/element/flavor_text/carbon/temporary/T + for(var/i in L) + if(istype(i, /datum/element/flavor_text/carbon/temporary)) + T = i if(T) to_chat(src, "Your mob type does not support temporary flavor text.") return @@ -195,3 +198,8 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code return if(ismob(target)) add_verb(target, /mob/proc/set_pose) + +/datum/element/flavor_Text/carbon/temporary/Detach(datum/source, force) + . = ..() + if(ismob(source)) + remove_verb(target, /mob/proc/set_pose) From 1c06dd92c2740d8e7dbc19d0462a6c5a827ad8f1 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 21:55:17 -0800 Subject: [PATCH 21/52] fix --- code/datums/elements/flavor_text.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 769ea5510b..81aa8f40e0 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -202,4 +202,4 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code /datum/element/flavor_Text/carbon/temporary/Detach(datum/source, force) . = ..() if(ismob(source)) - remove_verb(target, /mob/proc/set_pose) + remove_verb(source, /mob/proc/set_pose) From 3535916fd86f2b6d27c4bf55631d11cf3d595c22 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sat, 26 Dec 2020 22:02:56 -0800 Subject: [PATCH 22/52] fix --- code/datums/elements/flavor_text.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 81aa8f40e0..4b6ebff666 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -128,7 +128,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code for(var/i in L) if(istype(i, /datum/element/flavor_text/carbon/temporary)) T = i - if(T) + if(!T) to_chat(src, "Your mob type does not support temporary flavor text.") return T.set_flavor(src) From e98e73279cd7cc62612c44f669e1c0cb35c1cfb6 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 27 Dec 2020 06:48:51 -0600 Subject: [PATCH 23/52] Automatic changelog generation for PR #13846 [ci skip] --- html/changelogs/AutoChangeLog-pr-13846.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13846.yml diff --git a/html/changelogs/AutoChangeLog-pr-13846.yml b/html/changelogs/AutoChangeLog-pr-13846.yml new file mode 100644 index 0000000000..68e013acf0 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13846.yml @@ -0,0 +1,4 @@ +author: "DeltaFire15" +delete-after: True +changes: + - balance: "Fleshmend, Anatomic Panacea and bloodsucker healing now work for Synths / IPCs." From d1dc5ae419c279d760dcb8fc500b00caf5fbbde3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 27 Dec 2020 06:50:40 -0600 Subject: [PATCH 24/52] Automatic changelog generation for PR #13881 [ci skip] --- html/changelogs/AutoChangeLog-pr-13881.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13881.yml diff --git a/html/changelogs/AutoChangeLog-pr-13881.yml b/html/changelogs/AutoChangeLog-pr-13881.yml new file mode 100644 index 0000000000..0ad2d3afc8 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13881.yml @@ -0,0 +1,4 @@ +author: "BlueWildrose" +delete-after: True +changes: + - rscadd: "PubbyStation now has two Christmas Tree spawners." From 67d9e7993491c8d3fa80c70b0af503193db8f7a6 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 05:27:46 -0800 Subject: [PATCH 25/52] fix --- code/modules/mob/living/carbon/human/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 43ec23db18..03816555b3 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -43,7 +43,7 @@ AddComponent(/datum/component/mood) AddComponent(/datum/component/combat_mode) AddElement(/datum/element/flavor_text/carbon, _name = "Flavor Text", _save_key = "flavor_text") - AddElement(/datum/element/flavor_text/carbon/temporary, "", "Set Pose (Temporary Flavor Text)", "This should be used only for things pertaining to the current round!") + AddElement(/datum/element/flavor_text/carbon/temporary, "", "Set Pose (Temporary Flavor Text)", "This should be used only for things pertaining to the current round!", _save_key = null) AddElement(/datum/element/flavor_text, _name = "OOC Notes", _addendum = "Put information on ERP/vore/lewd-related preferences here. THIS SHOULD NOT CONTAIN REGULAR FLAVORTEXT!!", _always_show = TRUE, _save_key = "ooc_notes", _examine_no_preview = TRUE) /mob/living/carbon/human/Destroy() From ec2df686c3e992dbe0edfa177ad55968fa35d8bf Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 05:31:58 -0800 Subject: [PATCH 26/52] maybe --- code/datums/elements/flavor_text.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/elements/flavor_text.dm b/code/datums/elements/flavor_text.dm index 4b6ebff666..6217665157 100644 --- a/code/datums/elements/flavor_text.dm +++ b/code/datums/elements/flavor_text.dm @@ -155,7 +155,7 @@ GLOBAL_LIST_EMPTY(mobs_with_editable_flavor_text) //et tu, hacky code var/static/list/i_dont_even_know_who_you_are = typecacheof(list(/datum/antagonist/abductor, /datum/antagonist/ert, /datum/antagonist/nukeop, /datum/antagonist/wizard)) -/datum/element/flavor_text/carbon/Attach(datum/target, text = "", _name = "Flavor Text", _addendum, _max_len = MAX_FLAVOR_LEN, _always_show = FALSE, _edit = TRUE, _save_key = "flavor_text", _examine_no_preview = FALSE) +/datum/element/flavor_text/carbon/Attach(datum/target, text = "", _name = "Flavor Text", _addendum, _max_len = MAX_FLAVOR_LEN, _always_show = FALSE, _edit = TRUE, _save_key, _examine_no_preview = FALSE) if(!iscarbon(target)) return ELEMENT_INCOMPATIBLE . = ..() From e0c928a74562391f52f085193e04e58bc094e5cc Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 06:57:15 -0700 Subject: [PATCH 27/52] Update respawn.dm --- code/modules/mob/dead/observer/respawn.dm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/dead/observer/respawn.dm b/code/modules/mob/dead/observer/respawn.dm index f966051ed3..94ebf42a2a 100644 --- a/code/modules/mob/dead/observer/respawn.dm +++ b/code/modules/mob/dead/observer/respawn.dm @@ -155,16 +155,18 @@ penalize = client.prefs.respawn_restrictions_active client.prefs.respawn_restrictions_active = penalize - to_chat(src, "You have been respawned to the lobby. \ + message_admins("[key_name_admin(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") + log_game("[key_name(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") + var/mob/dead/new_player/N = transfer_to_lobby() + + to_chat(N, "You have been respawned to the lobby. \ Remember to take heed of rules regarding round knowledge - notably, that ALL past lives are forgotten. \ Any character you join as has NO knowledge of round events unless specified otherwise by an admin.") - message_admins("[key_name_admin(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") - log_game("[key_name(src)] was respawned to lobby [penalize? "with" : "without"] restrictions.") - transfer_to_lobby() - /** * Actual proc that removes us and puts us back on lobby + * + * Returns the new mob. */ /mob/dead/observer/proc/transfer_to_lobby() if(!client) // if no one's in us we can just be deleted @@ -179,3 +181,4 @@ var/mob/dead/new_player/M = new /mob/dead/new_player M.ckey = ckey + return M From d06c82ae6433090d2073bc50a21736e658867a1d Mon Sep 17 00:00:00 2001 From: HeroWithYay Date: Mon, 28 Dec 2020 03:21:41 +1300 Subject: [PATCH 28/52] It has the wrong description, fixing it. --- code/datums/diseases/advance/symptoms/flesh_eating.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/flesh_eating.dm b/code/datums/diseases/advance/symptoms/flesh_eating.dm index 774d97202e..b2b71c9a8e 100644 --- a/code/datums/diseases/advance/symptoms/flesh_eating.dm +++ b/code/datums/diseases/advance/symptoms/flesh_eating.dm @@ -31,9 +31,8 @@ Bonus var/bleed = FALSE var/pain = FALSE threshold_desc = list( - "Resistance 9" = "Doubles the intensity of the immolation effect, but reduces the frequency of all of this symptom's effects.", - "Stage Speed 8" = "Increases explosion radius and explosion damage to the host when the host is wet.", - "Transmission 8" = "Additionally synthesizes chlorine trifluoride and napalm inside the host. More chemicals are synthesized if the resistance 9 threshold has been met." + "Resistance 7" = "Erodes the host's skin, causing them to bleed profusely.", + "Transmission 8" = "Eat's away at the host's musclemass, causing increased fatigue." ) /datum/symptom/flesh_eating/Start(datum/disease/advance/A) From 3e3ca7c8a76d169e19f433f4f50c1d86aa841f39 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 27 Dec 2020 11:24:13 -0600 Subject: [PATCH 29/52] Automatic changelog generation for PR #13873 [ci skip] --- html/changelogs/AutoChangeLog-pr-13873.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13873.yml diff --git a/html/changelogs/AutoChangeLog-pr-13873.yml b/html/changelogs/AutoChangeLog-pr-13873.yml new file mode 100644 index 0000000000..320a5b69a4 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13873.yml @@ -0,0 +1,4 @@ +author: "BlueWildrose" +delete-after: True +changes: + - tweak: "Nyctophobia quirk now has some light lag compensation." From 798b1b50f43a9473d03fa6d39257f7fd2d49b222 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 10:38:07 -0700 Subject: [PATCH 30/52] Update plushes.dm --- code/game/objects/items/plushes.dm | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index 9bc20565a6..5b0a593267 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -33,6 +33,8 @@ //--end of love :'(-- var/snowflake_id //if we set from a config snowflake plushie. + /// wrapper, do not use, read only + var/__ADMIN_SET_TO_ID var/can_random_spawn = TRUE //if this is FALSE, don't spawn this for random plushies. /obj/item/toy/plush/random_snowflake/Initialize(mapload, set_snowflake_id) @@ -112,10 +114,21 @@ return ..() +/obj/item/toy/plush/vv_get_var(var_name) + if(var_name == NAMEOF(src, __ADMIN_SET_TO_ID)) + return debug_variables("__ADMIN: SET SNOWFLAKE ID", snowflake_id, 0, src) + return ..() + +/obj/item/toy/plush/vv_edit_var(var_name, var_value) + if(var_name == NAMEOF(src, __ADMIN_SET_TO_ID)) + return set_snowflake_from_config(var_value) + return ..() + /obj/item/toy/plush/proc/set_snowflake_from_config(id) var/list/configlist = CONFIG_GET(keyed_list/snowflake_plushies) var/list/jsonlist = configlist[id] - ASSERT(jsonlist) + if(!jsonlist) + return FALSE jsonlist = json_decode(jsonlist) if(jsonlist["inherit_from"]) var/path = text2path(jsonlist["inherit_from"]) @@ -151,6 +164,7 @@ var/datum/component/squeak/S = GetComponent(/datum/component/squeak) S?.override_squeak_sounds = squeak_override snowflake_id = id + return TRUE /obj/item/toy/plush/handle_atom_del(atom/A) if(A == grenade) From d4f94724ece7855fffd3b22f1c6018d4556767e4 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 10:51:44 -0700 Subject: [PATCH 31/52] Update plushes.dm --- code/game/objects/items/plushes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index 5b0a593267..3588b7be63 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -116,7 +116,7 @@ /obj/item/toy/plush/vv_get_var(var_name) if(var_name == NAMEOF(src, __ADMIN_SET_TO_ID)) - return debug_variables("__ADMIN: SET SNOWFLAKE ID", snowflake_id, 0, src) + return debug_variable("__ADMIN: SET SNOWFLAKE ID", snowflake_id, 0, src) return ..() /obj/item/toy/plush/vv_edit_var(var_name, var_value) From 5e269c327a65c7379dd548927892e2bbd72aec49 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 10:53:11 -0700 Subject: [PATCH 32/52] Update space.dm --- code/game/turfs/space/space.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/turfs/space/space.dm b/code/game/turfs/space/space.dm index b150d4930e..765c88842e 100644 --- a/code/game/turfs/space/space.dm +++ b/code/game/turfs/space/space.dm @@ -163,6 +163,8 @@ while (pulling != null) var/next_pulling = pulling.pulling + if(next_pulling == pulling) + break // no loops var/turf/T = get_step(puller.loc, turn(puller.dir, 180)) pulling.can_be_z_moved = FALSE From 952f5f87162bd0de8c21f7253338a3dc49395be5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 12:32:14 -0700 Subject: [PATCH 33/52] Update drug_reagents.dm --- code/modules/reagents/chemistry/reagents/drug_reagents.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/chemistry/reagents/drug_reagents.dm b/code/modules/reagents/chemistry/reagents/drug_reagents.dm index 44b6e85f47..0b44c33926 100644 --- a/code/modules/reagents/chemistry/reagents/drug_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drug_reagents.dm @@ -171,11 +171,13 @@ /datum/reagent/drug/methamphetamine/on_mob_metabolize(mob/living/L) ..() - L.ignore_slowdown(type) + ADD_TRAIT(L, TRAIT_IGNOREDAMAGESLOWDOWN, type) + L.update_movespeed() ADD_TRAIT(L, TRAIT_TASED_RESISTANCE, type) /datum/reagent/drug/methamphetamine/on_mob_end_metabolize(mob/living/L) - L.unignore_slowdown(type) + REMOVE_TRAIT(L, TRAIT_IGNOREDAMAGESLOWDOWN, type) + L.update_movespeed() REMOVE_TRAIT(L, TRAIT_TASED_RESISTANCE, type) ..() From c25c6b01d7341b711697c2bedf8dcbc709388f59 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 12:41:07 -0700 Subject: [PATCH 34/52] Update atmospherics.dm --- code/__DEFINES/atmospherics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm index dad2a38afd..f51eb53cee 100644 --- a/code/__DEFINES/atmospherics.dm +++ b/code/__DEFINES/atmospherics.dm @@ -115,7 +115,7 @@ #define MAX_HIGH_PRESSURE_DAMAGE 16 // CITADEL CHANGES Max to 16, low to 8. #define LOW_PRESSURE_DAMAGE 8 //The amount of damage someone takes when in a low pressure area (The pressure threshold is so low that it doesn't make sense to do any calculations, so it just applies this flat value). -#define COLD_SLOWDOWN_FACTOR 20 //Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this +#define COLD_SLOWDOWN_FACTOR 50 //Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this //PIPES //Atmos pipe limits From 50de8d7590e36903c0833e7deb61048f5c65f6be Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 27 Dec 2020 12:43:21 -0700 Subject: [PATCH 35/52] Update atmospherics.dm --- code/__DEFINES/atmospherics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/atmospherics.dm b/code/__DEFINES/atmospherics.dm index f51eb53cee..7bb124fe0f 100644 --- a/code/__DEFINES/atmospherics.dm +++ b/code/__DEFINES/atmospherics.dm @@ -115,7 +115,7 @@ #define MAX_HIGH_PRESSURE_DAMAGE 16 // CITADEL CHANGES Max to 16, low to 8. #define LOW_PRESSURE_DAMAGE 8 //The amount of damage someone takes when in a low pressure area (The pressure threshold is so low that it doesn't make sense to do any calculations, so it just applies this flat value). -#define COLD_SLOWDOWN_FACTOR 50 //Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this +#define COLD_SLOWDOWN_FACTOR 35 //Humans are slowed by the difference between bodytemp and BODYTEMP_COLD_DAMAGE_LIMIT divided by this //PIPES //Atmos pipe limits From ad9fc238e7aa5bdcf824b9a45a06184d832567a3 Mon Sep 17 00:00:00 2001 From: Sonic121x <64410541+Sonic121x@users.noreply.github.com> Date: Mon, 28 Dec 2020 04:19:37 +0800 Subject: [PATCH 36/52] Update hardsuit.dm --- code/modules/clothing/spacesuits/hardsuit.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index 12829ed0e7..d61d842ece 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -873,9 +873,9 @@ /obj/item/clothing/head/helmet/space/hardsuit/lavaknight name = "cydonian helmet" desc = "A helmet designed with both form and function in mind, it protects the user against physical trauma and hazardous conditions while also having polychromic light strips." - icon_state = "knight_cydonia" + icon_state = "hardsuit0-knight_cydonia" item_state = "knight_yellow" - hardsuit_type = null + hardsuit_type = knight_cydonia max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | LAVA_PROOF heat_protection = HEAD From b51a2e939ea11df4e982c4d232a002f7155c7d90 Mon Sep 17 00:00:00 2001 From: Sonic121x <64410541+Sonic121x@users.noreply.github.com> Date: Mon, 28 Dec 2020 04:21:52 +0800 Subject: [PATCH 37/52] Update miscellaneous.dm --- code/modules/clothing/spacesuits/miscellaneous.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index dd46d7a5bb..2ffe85b6c4 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -256,7 +256,7 @@ Contains: helmettype = /obj/item/clothing/head/helmet/space/hardsuit/ert/alert armor = list("melee" = 70, "bullet" = 55, "laser" = 50, "energy" = 50, "bomb" = 65, "bio" = 100, "rad" = 100, "fire" = 100, "acid" = 100, "wound" = 50) resistance_flags = FIRE_PROOF | ACID_PROOF - mutantrace_variation = STYLE_DIGITIGRADE|STYLE_SNEK_TAURIC + mutantrace_variation = STYLE_DIGITIGRADE|STYLE_SNEK_TAURIC|STYLE_PAW_TAURIC //ERT Security /obj/item/clothing/head/helmet/space/hardsuit/ert/alert/sec From b70ddb91024e7d41e564c4e2499ddfb22ba2337a Mon Sep 17 00:00:00 2001 From: Sonic121x <64410541+Sonic121x@users.noreply.github.com> Date: Mon, 28 Dec 2020 04:23:12 +0800 Subject: [PATCH 38/52] Add files via upload --- icons/mob/clothing/head.dmi | Bin 232775 -> 232832 bytes icons/mob/clothing/head_muzzled.dmi | Bin 84460 -> 84776 bytes icons/mob/clothing/taur_canine.dmi | Bin 131870 -> 138694 bytes icons/mob/clothing/taur_naga.dmi | Bin 124916 -> 128491 bytes 4 files changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/clothing/head.dmi b/icons/mob/clothing/head.dmi index 889888ef0a65a366dd5c973bea882a38fae47a9a..62d6644311cd46fb0182208ccdb1ad20a64d8e35 100644 GIT binary patch delta 36727 zcmYg%1y~ec)b|pC(kdk>pn@PJBF!S8s7Q%)w{&+5NViy^G>CL}E-6TNr^M3D63gy< zga7w^pKqUsnYl4@&pqed6Tf@u{6XfQNcNEpm-t%TeG$O&ivfagm~~ZiEwIX^Y)itY zbZDJ-v9k{Wpa=EVR#|3fB*YKVsOp&b=qI^W;+}k+BH1J&z`h=$8geZNdP;7G`P_h;=)6a?yx&Ve08Zc;n75igjlS!_ zuJAO*#PJS=xYSc8*0z@uB5_&<4`puPt;tvP1IkOb1ClmkX8H?sdvR6Yjx~EIvnJKZ zolFHMi$MSS;``NpIZQTNf8G_#Z~b9lM$@vLEXCR3;XOWMIw-XlaXJ}N6mi>akrZ)@ z;gU6^(z{iQ&>C{Y=lE- zI65?g$H>1F^!(-2hYR2x{oNWyW7*Mk4<5tM7O3%#U97Q$XWTJQ_J^A<_4H{<8=`sq z^g5H<3kQ0YrJufMcp~5gt9C*)=Z-yemOXvf)177c2lod?Om6WynJ%SPa{IL(u6L0D zUZK6Hz}avlEY)oB+a)9Uxxs+aHwnEfac8gYAq}YCvZkwzyM{Jo>kC+K=Y}H*EzbTpK5pZLx^>=AcI0+zRs66OEb$N0&W$P%0v9FLv3U8zQ4NWRZYq>u8{tzWCqfkqKrV%OS_q#I{gHl;%9qRl+nv!J#$Rv2`w}p zw@I3wG=@EwzDPd2Htb(4rHR866jCS<_8~Qkz_jAc588yaQ>i;5-xcBS>@l$#s8CQ;ri=^ZvK1D0ON8dVfAM=UxT;SGt8QEbUc3D%{(!U`Blx}I4A4+qp=6~EmkRqd>Qu40`+d23iL6&OzOChsI*E7; ztPS;vFO7vFhuVhk`gK#1Q*M7%KQ*y;xE^(XLCs$5C)-@AIW3#e{m801j?TRrOZWlQa3=@1}GFZMO^OBYcBS*6MBll#dHj zg5+ovz2xXg;L6P2x$*${C;O%y8O8}mh2mS+-W3(b+yv6>SoppY)u{Y3^jhnsD%fMl z!kvHn^CeXfYiK%d%IETefLuevv*#aia^kguXkjkdyABRF`Pq<0U9~Tg{omW&;gk6M zv!clUh=N?d-@k~2mE%cwxD-dQ`h77`(k3=n_r7BG)$&M`Z`mq3eUUs|LC$WD?YO^~ z*R=EX5b0Kop;)^|z~}O7tbpnxn`%Z-Rbe)>y*P>3WOr#@$(#*u4X8@#z1hn_7hxKp zyYT&WldLy_;JwzPTJ-UG&!K#dK$J-9&)k5&bRka!Lk?jHQe^6VZPppw`u-VG!2)?S+?~p5B0cy`_uOuGoNtPTevwI?{;u%oK<%p zysu{3X!!0-N{3RRVW^<J{!`7qRf>N8X2I zH;Q?$zYHIY+7)(scIzoI(En$wu;4XUrLXC-@OZebyxLZfsYX1WbepXFjnIs$p062B zd5O>O^+^q#yfwW~=-!!qY4-Fh9H_(2+x{kdou$#P#V2Yi{nxWtDhD4!6vCy_d7A?# z;FF1qo&jCX>WxSe&kx2LHy$`Vr#kd_uijhi@Dkh9(72V_)E~gMB?0hXBuq!X@G0%* zaTBKFw(L^r5BQ78%bxMp6OvpWOP-O|?-E=!S-(!TuJ>7z`Iev8@>mnSWu5HSJTVh*|B`G3v4=R9y6g``=q2L z$)xOz4GZ4qWejFml;y^E)z)SkVb6<}8lN=AM>CAuH%6x~pPcz@zIx@warlGuA^lf@ zAk?tBY%zKFB@Hz!hCx_J;&Wy9oxF&L{myL%?*eT_m87=1*~fbodVVUXq*ZL+?Pog@ z_vn^zaZW|x-FNcAeGE{&328ajj1wrf&u;ytv?*-j{_4f5-jYsLfiCC1pn~e!w}wvX zSzQxUXP6>3$HML2~p!eo$bx!P+4A!*2vfqu#>=8{+6cr1Oe*E=P?Y?!y=9uy? zb}>$^Wx;N`-;~t(+ZIF>>V-I#?1DiPFbC4m*B^Dq{+J$5IQ(J-s)=5_efX9q_qC(~ zmA0+gO!}tkv1_EL8Rw=~&h&OmaNd|_AR$%qfm6|lmi=`@xB!lenuTZU{&J0!kZ_7F z!S-fiav;T8$2kl$e}7@ZUPG>a&bbTrmDTj3PqCG9Pk@H&X3ppD$-%GxayP`?&S$@S zqj}y~6<%JQ7AY%24!oZnpz1mhH& zO|;q6o`k<$n&v5P7#hU26s+cw`<>uM*fLdMAkPrjbz7#~U+TudO-b$GmqY-L-0&Kk ze%7^=pNUN>18Fj`t54gQDkQQs>D|ul35p}zqo_-paY}+Fs+xe92^OIddPWLr(&X;i zukuP+Eq@;gFpWGBU?OTYSfV0j8>>H`k-8TBC1=ZR<`H}7Y>3kw({C~n`7Oeyl=yeL zl6o3UW&Dk`S7JWH)bj23XHF(s<{yt|8ra`~_eF^*?e`YP-wA*Ihw>5e`rnrG4;>0L zN_V9=fdgFJAcKA{^9HwTL5||?L=AFY5A3g%uZC#)tD?I8JQMlMmVF|y*Y!v6rRKlu z_etR<{3_Z>R=K0N&(>u{om_Z0ylqLzt0~R5u33fRHbgHK`W@$t$0jadFI|tem=SQ0 z+#a{=n-9sYu|Q7ZP)=f;YEEL@t#c!P{OhcD-uO*4~ z`^*>96erf=ou_y=-FbZU=g*z^xM3U#fYRkY$ic-WPnmUJv)be_Ijf-H*!xly-!}fF zSM=6%c8RsrurIM}P!E{DyKVAB>esLLhhsXmss-vP3Eufylc+V)cT#*Jmofkwt+!IZ zpF5W0JF`aLanuZASWYyTY0K&?a0e%Vz3Dn6=&6G-Ak_2~2?-vHHc1$JW)A}YUg{`P z-a?&ba^mGRF|_4%J8Yqn)6HPVCkype{aZ>eUs8PTXDYMfwI3lSBxfQ?xNstYBk~+c z0MP~FE8L*;1 z3`YC-EeE3<3SbX`!S<%}wx;_4QN4R9dKPp2)&eiQ!Q=woPQHw-2V1DM2$eO@j^zZ< zrS7V$XfgP?nnb1c=YiY$JHr*3izaMR5pU<qiU?}>3wOdtXIEes$-ZvbrP_O|!)x)HpAI8)KSI=<7} z@CugZ!vOVoe8gM~4GCP%UN1G;d$Hx_gc#Dq=vp?9#+#gN_q^RgDNM-0n$2RD%QXBg z%*?_^N8h=~i2FSZNvHoC_v43EBj4yVg8gc$iDjc9Qu0VUj@R;1uU|(DJDNhBzkC5G zuLSRE&s8L+qWz(2E8av(ncmdxA^wMH4usv_MQ&~`R1x-F2=AFK!v-*YAWXSHg?F$_ zf7j0k57Gn6t*g3xy8}J`mtsuWjo>R4^Zg{sYjPK^rq7#r^Z9v zYA(kARFw_AG>m$ZU$oU?jCapgDW3m2-W{NGxWw3)-|fxqNq&XJbCZh;@Urwt{%%Bg zhX*zRi*+Zni`RIEn4?rh8a%@L={gSh z1kw0)*W?Tr)9!I4jHtj@$4z4|9#%iF&L>Y`Io=vcZFg1rz4$F^%R&CPtB3E!XWA!a z{AucH?t?EEPd1daU5mXR69C0Zz*|c_u_>@f#rETbIZ54%O2?m|Ugq@OLzKmkU|uu| z+XHLLLz7f69Y4_~_o558n0S~TT$3IfACkx6k`ZBY3k_Of+TncQiqo*(6&{ciz^K$QWT@f(2_$))| zQjnGs14F$tH&#BzTfYrNQ}u4<0P@|2BoThFn}J7s92YpVpB`&oaT%L#d3Jeh;_$pb zl*>u-A{6-bZ!#E}k%GF^R6i2vp+XNltG&s}S<2X76(I#FzVHkuu1fe0pPyY&)y0k6 z1M!P((+Y_Z8mL$~7H=|H;?B1FD!Pqae?5}9VUUI%W!I45$rn`9;5efpwViBYR(PZ7f``{?e)o#Q7o7ZJBup0V}>rUrS{mAHJN+(H#7s*d>fq} z)vYn}X-Ls5PzA1&M^+RzeLES6>HNL~;2EqV7*x}a;U@`qq~tJc+B2KhT35>M6l$i8 z^hpPu-UJMT!DHqy3CHIZRbvxn*rU$j{jJ@mF+k*()CLHdxK%>3g_BKm6dBh&x|-hbt{Jg-{nUUJcEnSl2iN{B-KGz6st|DlU=yW-?rgJ4FL2 z%&}V%gAhsbxXr}XY?)n;eFZM<7l|?PCT{@=!axG&of85W>@Mt;?6Y^|wtYi>f@_d9CA3YG=^(0U%wu%BI;Xp!tqyghP31_)|$Eb@IJjGSV^A4v!`MW)k*h< z`r71m?YBu1pf%qOAR56OxOGYaya!8Y2s+dA2u@r>!C`1%yjR=-g^y+q!@yO%31AKx zC=zsWF8KJ;t_Z})!dLTwkE=xMi;IQ~lC~*gK6KZ~$i}OP8jFg^q)Zf`{IJivf7NHQ z^H&53JaG%8`99UHk={*J;&@QXQ7i~xDjKRNp=WIk7Q7NGuYpjjd1oG^457g$5ZvQ~ zHCPhOuLM`A*2r~yOF^eAddq9Ei2YvK)qLeuqDjfNfIxs04oGTR&W~3TiA?BPn~fc( zkdHMWb^p!p>@BFGZkqCl%NP_qF$h`s(+Gs9eeYoEwEpm$!yx#PhLl`Lu%X4l49q{d z!=CN&BiR|wplv*vMiY@vktBKe_15oIXc)|5 zdRGQ`Df_WXZQVjK1rL`0>(ocLh|BAC@9eDZFE{Ch#1pz>|}c zai3YP7>F9-1+eu)rpMx#3{zNuASHvDEOX&W#z%MxV1@*JMN z%|aK56`~XlVl@Tx6_arnMVRwE z2Rz4eRiXJ&f?at_cOP+jp2ExJ(@|Jn;qoyHG-9z=eYMgz7p!f2TzLv8oL-Zh0Rh1|8jj)} zc?{_4j==yNUG8X5S=sOeM5}zAMgv@^a~sgULvpn;QaZALe=_#4;kB!)Yff>ooSq)z z=H_Neg97hA(oUl^V@18A8-<6lVJIxKCD3j{{H3l=w80|B;KtPgUK$Z30wORB+f< ze;!UZje?Lht~dooaswdJ6|xC9i!lSPT>nE??Ya44d?NX~lqc1fIpP}-yE0|^ehfpl zxOqXnaBv<(6lyQkUh974Y?F8X78L53&ujz%-qhMo3p9B6-J9pISo;Nf*Auo_iaX<{ zpOv?qt>U^#nHQ7#Vkqt{6s*cZx7edRU-f;_h?pl$=SvzVTMk7dZrn@N6_7?GZB@)c zbIxGPIxARoU9GJDxraM=e84-9@3OWcGRjaa6l>rYz2cXtaHAGJ)Sik9Rc_WROm^gZRTAPxZnodnkP1s{UO+`&@)lq)~ zM)zA;MI``|=IHo1tFSQbvuDqy(ae;TL6GH!sxlyZO+`i3U2H%QJ!ikQI|S}lyH4Da zYPvk^d12I|(r|U}@7L`G%v0jZ1tyjohH;)mEiK2wUjUxZ?+_8ku<}S!r>CbwAEl#< zs5#T5q-J;ywMb&mOjaibu!L@)*`UYFC>0Y1VY^AhjkBVZLiIbqc8%ZSb1l-j|G~hK zm7L*tm(N_oINnU}4*PUvFbZ33Z9Oho(#IgbwzXNDiXq>|_N0jv+uToNiIvZXiT1WC|=!}kYCBtj7Y@F$kR8^ETIk*cc?#njA1OSRaO|k zu`ziw&WL60_3?6cDI5CZ;a2=J=P}z4;%82A3w&2MbQh9)z;Q_FN6(a z36fsDdZk%zP6~VPxx{N`Y8vLa{M%^pH|Hbaaw_NP`LLuR7N|LT-0=)|51a4D_8Lv^ zAUX#$NK#nW@$yyAdE5)d4D_jCUwlCcExOc!mdvE>GS7(jAq#Fg--1Q10c)JV|GWhn z6pBRXl#(-N@?!aTzWsmi<$;clj;v3fP?{*N{gq&&K8?uKoOt->Qq6}Hr-C;;GV(Tz z0+Jh~JFE7xmH=Kqq!!l11j$E|CcjDeUDlO-u&vK7&Gz>8NBorjhOpl%G3g}Z#`($n zogXj>f%&J)gl3d1<{S!TR3LCHbbTJVZS$Rq4~p!Sfi38T=3lCK{COs1R>c?=w1LCB zb9$BO1^|=_vl!+t>D#LEx9IJEER7-|ZVA9!BTs^YslzC~p`Ga}%_gkLETsf) zDwX~3pI>xTn!u=Uu<7`F1J?x>KAulkzRQ` z{YRZ-VJcx$NYEm-_7%AM*DR_CbkB^~(F-N;nqf~q{b|+}b#}%7d^D`-7aAAEJdRzo z(lEN5rEto>&Hm3hbHM6KsRf+48TlYk~PUUI0|WAz)g zz*xAdGZPIB`!1DSA?#9u?df8xz1W?g1+Ez5C6&rpP^&cLiYP&(fO#*4u`j#$;q>1A z#WB0l&m@wX{Sifibf~hS>{KM{X#caHbMWkDd#*?-zexz~7=I^GvrsZ!7q)Gd`7!_r zR}m$*2fcp&_qk$mvoM`QdH`=9JSJ=S_n}fT{~MsX7&(`{K+wO>0ILsWde`S^{SiJk zwCLCnObg&#Jv{*;Fj8HGib+3?QY0=S68|!n;_eR+>66#&&nOZs33b3f^qwejB!^af zq51DSN+~xVNOH~FTw4@+9((=2Zdc;@PJVGue_Z_RIZRRZ|9&ewWhfXs>;L^OiVWlZ zMe*Ln?~CBo0Uwf>U^oBgHBJDTp*wk}Y1;mD3hmo+fXMxoJ+Z@M=Ql9B&asWOf zM&6q22gBy$KlmBY5f81_ZNq#ZWCI75>Z@gyT)%N~9WoK`W@y0Wfb(AZdZObcw8|6 zj=D#dt~9;xyx4o^3w!D9np`7L(OcJ;_n5&wD5mXBEwLP7t0El6y(dK zqYTr5nV=>GAL$8BIXP6ZRmC7bFCK3}hsOc47T^)$7Kb^lUKN21j zshb)&u$7r2j%HzRY`^eWYew`$f zpVx_&OHC$$<(wZ{L-Cp5Cv^1qtq<^dk(W{AmiBX!9w-Lb;^4-JwzOvURuBKN6)-_| z!&Y0+8{EwMLCqX_>N>+H?yWd;a)nBL`9fJSPai!l5m47ArH3$v{JDP5?UI6mM-WCu zblMrB2H#c>fQq(CFth87LWQ)D_+YU3p5Srs%s7poJW*Ik$WhybHOAsw)I1U6)E|1V zc+FTOtK*LDQFz!cwq6(D$@hEr?#npVKH;J4#76y1YU;Hi$m&1mByBM}<1W@3cdehx z@v!y(Mlm}Niu9liTUM~JBuJ{o^`K>O(QO3N&7q$ll#Hv;edyWO(JwF9a;rbMTzkvS z;vp^lVST)iewefBuem#IRZwl*)X9r4@$uF-(r@3oC0nfD$On`fMymnOFNGOIU0&*3 zZ>mw%IDk~c$E`2=`i&bnu-Jnfq85Wqlj~?fJSjCbD!U6SE&`2>8!fks0oCJO0sJ1M zu0?WUg(1x$x#`t+p=uIZVamOJhWE+!dsz(I{Zr}O`0*^qvy4;g!&!o`#j^uZpUYzk z8_Y{R+D0gXr4X9OnZ1azm_vq;;iR$S$NDZbp1d*Q`+^9-@`X6 zp1iqzkpj$YDcx=r-7Fx7om*NasL!5>i_h`#6>0)ITX)ZAtyNr}tO>3VKv8&PM&?i= zi*P01UdgHKb5d0NJCp6+BaZrd;#NR8pbT((en!|?ipt7&ur(!g+1>oE;*%(a`e5W7 z(Nh4nIBt1Z`MxVp&AgAdL>z6gJcwX<@PHstk{*Bi_NMfHXRwq3o|ye~ct!?m)cirF zISA0nI5esk={__zHs*Ujc$fRA$r-7r^6p*GjoS}=kZ2z*Z~tmNQHD;Os7_u-o43qK z-^)m0A7|~KJl&oPJ8)(T>ZZ^QDap^b`Y}6^uO}uBsd^5HQ6h1`?dgivmU3hTgt?Z4 zE)=Wz&8_VDc$BSn?*9$yDd=uMD%xB%f-SHS(Jw=0bN%*9645Bz~!&p!RmApd6@} z5>fh2A3`d?794Y>;v2+2VxCt*i>e@xgwQ`^P|E-u(br?AezUuGAZW1%zRlSMj+~ne zors2^YL}qJx$Zh6(g(&07BHm0otadvN>N?G>R`GIlRdNF`d~USxJvz?Z4W}6a8_42 zczNaELjxv~=A3zrYq}=URRCc?<8OV~8j(j31FonmmA3kaJrAPKza|kN{94d#VM9TM zm__KFCkr?>n68GxND{=A`SaJ~;KB9M@byRe3$phhb8|8Ez#DulPDQ6r63)j3J|sC! zV}KAlI7reZ7?d`2lyVLB=AuXTxOo8wW+rs1qBs7wYK^gCZ;Tnxf#Yr}2YfcL8CLhU zu4DNX>=#C-)Avk=4917d6q1CkNfi8a+XH<3UxDwFj*_cHQlFm5JQ^MakB?m*?aa`q z9v+oe*c;Rgj||nj+mD%X&kvlsN`i#F`}OYTzfKtL!r{ybaOUb+C*ogkR8GY?pfUop zW6y7f_4zro1~fpu1RpRCkBoE-XUX%MbyIdNH+UX39U1jj8>QY>b573;(d#_tSsuOQ zaLj1!^}bpW;5vM{H}@;8mIJOBu^S8a`)$qhKd%|?U@Q!m2OMnM5IeJ#zLA8b>M)>{ zi@?*s(Av?m9H-&6lQ{op6N;NR1G?YgrTUcN-sS_Iy=wewqG7bs6&{u&sF7&zD-Q}H zj)&zl5THb}w%Q66nQ#<|(K{4~ScYo#ja&3f5qlohM zgEvqNP#U4M7naY1(GZ^lcJMTtOxbo3D4Yst{XhsT#Vw9g)BW5l9y;ASapOD zH0^x0cjHR0UOjvJ_7<5Pf%IH+OP>_<{PykJFB63Rvpz?`?yp}HLB&OhD+r;Mp)=Y& z!9?|s#sxEG<6Z0#1_;zyr#KeS2vITL2{(q zA^=mU5?)J73*-e74=>!xAc!hwO#GBeC=R@_Ifq*%Bp?(wZo<8_%`25Pp-(+-V zoUV)|Gz?jQ4Ho%|XP6YJ>NCT>0Y-N4VW><%!a(#Nv`0w75aG77d@wnEqKOTjo-QTt zzZqD?@V*L!u2S29&R_Zg=qj7tk~!F<0mL5dc%R5Y1&Bet*az^ zpI3;Od23QL>fvOs?H?9)9iLE+&3?%uEIi!u&nG6xc3*w$s*;rzw^oQ-*{^Tj^elRZ z#eBV90{`}dCn)&fBi$NhNJZ~*a?(vQWi)`3OdoPM$^np=hR5X))Ln9IV2x+=--95b zjw6E>G4uif3_=~`)GQ^gFeWGfzO?;)nEXosA2^+JKLFY~t@GUx7V6kdM(@+GJ&ek<|o-nuwx=5h$hXdk*P1%68@h zgkKcKf?+??yL@a&Adu4c7YGe{Rbc%T@*fNc<&)d57(#iaV@#C(3PU)9RlaSpma0k9 zx%qhN~W77?BKE3Xm3pkQ`cf=%7`AbmjFq=b3Z^J`wd z+tOJ$=aEMPS++Hi!=*=Zr{~ygk(sbx!@<@g_=?@=abj^JD2Q3p(Mf}?0s4z}6OSQ) zbR@OxKiD;y+daLg4A-JZPk4*xSzo#YbUP3(o(?bEau}bZeX`w9OMb}Q0L|fuxnTx^ z49jwObDBkH1A(wu2- zYI^UNLLvd|Yzr^|Bih?#%_?u-zI`x(z*52ZY^R^dzIfpkmDPrOG5{j`5-oJoK%80( z4s2`M6}6CiKHuOe@LFE}X4yU!Lrlzzu2v0YZS9D@#4+xs3c~%5N}i}6_Dz~Gz?sagKQ7S@3kn*kwZJW`<9sxn5{ zmO4t$5&5XQW*)-oN=gP_LWesJJ@yx$#m)o=2X~_lG&SG1cXZrn)(vN3V2I*pcP>S^ zl8*MlOo-c)d^rA%&|BR+9EY+{4q@=`Hj{Jgf zX2=6aM@5maAP9xr-$@XlPr;L|37whPpV`@X{=*W@*>ApoAf3mzSy1)T|!L-+m&i0r7V$pk@&`RHrg>!cX!c&7(GG8nu zyU({&+0G>SDFaqtTeApp$B%*W?^NN<=7{91)le25O zF69h&O)!>TsGkIr64_qqEWhYhUuxb*SGc@??J#(-#&KEsU>bH0VQSd+21m_aw$|tu zMcE4oRJiH{b0`4G8}x#znZu00&gizIMEN)Xf`xuI){#NOl`Sdo#Gy9pLYRfu_rL;8 z8Iq#S4_FOB?BR6E5%LNWcqE>OC7tvMCu!ZIlH)H~meNIX{{F@%^x=Yd{(rZ>&6$)1 z$azor+xvF;wj&~5^ye~IcT~qL8f-%9%lh}nyX`JoyJUJ%Z~E7W?zc=p^99|Vpwo@h zyAhFYEcQd>t5r6y*NmVv$gTnJWfF=23O?Hc8bKJW@QBIN`^UP^GVN8;Bv!;2la8)V zUmIk)vb^%JEqPOl`SaiWIU*H=$po>j8Qt|?P=NM&sPK8m1L%zf?Sn$+`Bk*TqllOn zq1T9&B`nB(QPBVdTo}g29x!q9b>7g6O4K#JnqRe>jN-s0U>{Gz-Qi3QOV!D~ zl76S@(<$Pf@lyahQv4A0WayU;Ws|}8fR6NX$EsPXt4<`Xz~lpYd2m5Ekx0sZ-o;SJKrb}x?TgD;I(#xd6S(Z$cwP8VJ@*MexDbZqr+ zZsjWyn(!j9hS#fs8H(RVGPH8B5%aOd<8=`&8y9_!^dTRY->S*zZ%Mc9te@1)+1+Gj z=H2d;%H7keuFZsxKah?cGp8W)2whk^XUY#?TUHylE7+4D&@zxHZz@QHL*Oi2f5Bv+ z;69zz3_8t+#KbQ3Zfkw8XASXEsi4-Ry(CNv?t6DthD^RGRv|7{3#KNqex z3QOph(xmlIff<_&)ydGh1eYmJAO;g!VO@@QLUknZg~;fo^{oko-5U=M4p<*OBH5X) z1OhQRTt2RKe$So-K;Wr)q39u#T)o>)8tX^*`nil+?YEkm2`b9U`^oyG&n4dw%oGNE zrq6fGyTCg-GvijYD#^=UMI)n3;NPrx$#a2n?DvxEXx;&_zJ!R2nUyrv}4zqP+h z*rTGpTZQd9xE!d-2&-H{AR2ynvx`_CDIZ^!AsEgLVlMXa;f%bGOz)O z=J2p4nFl97MpqIq4`q7rP#x7!(*A>3&y{Dj-^lsLF))U@hBE^|Ik+HA-KH+^X7XCU zd(EN*w)oH2(|5}4Th5|_3#h@9#H3S=s*>72V6c%9_d+7EZ-2;QeaF^K&-KP>DXhm8 z2VCgp(l<^S2e@Cq;~S)FCGy=_s&3kODZV8%DqdSkS14W7TAOz|m|NYt2~(s-gsP8K z3TwDBCBJar*A2JxE3nal)dH=R4HftZgWHi{i^`>+LIIUuOs($++rFbGfcXrlW}0jl);*xUt`0ab#z$(`?l)$emcGI_%|fSY+F$!?=V9 zB?=(_$8@N(bg3!$5@yHn@R6*iWw;=L$kVTrVDm1b*iqEq{sxxPAK03W{Y`^vii7rO zO3!d1eqNIW*-w7lW1W6(=yLqt=F$9n#;Y_dD)kPCs_Z9ri+LEB2lz zx2=U0G1i%ka<`Rkz-J1UuPUTSS{jj=85arvI`w%D-DsHZCru-g8dMootH)X7XRK@s z;)7NoaDDHhyq!X>3AM6mFI2K~e8a~mIzLNhzs*BU-&$}sQ0%VFnRFYsc{tzBgoK0` zdQ2sf#ze*K=?iZCsEw&9|6f=dN=jP0YMmrWUpl*L`os0nP2@YnaEI@$p;$#CE_OPR0NY9b^;s!W!0`BH^7;N#11y!5JKO3r!OK zzeT1>O+r6;(u%sg=N}YafRb)ur z)PYgV7}lH*%cwi0kTRjj87{*sh4rc-FoYz{CFwFHR%4voef-F!mrHkNFNg&z0mK7p zZ)Zt-m`h|>I}{Fu?}(L^TAbQB+pLy)s3}+yqnRf$z-}$F9l~+>p~aEL0%|pS3A$}h z2Glwu31+w8mM5EItxwq(5&-zMMbX4PVuSY~6a0gvU;ww_g@IQcC4Hn&#)YonQ)>Hn zOcxh*!y{Q|L%cxHrt?_0wOVTa_^k?qH_uP_Z7#@_z1Mzz8=RP!LdppCi%=YK8NvKN z7Q5?5xjH<-;h0%YOZFWrAIVRp|KM(v8f61}KXpkzHUC)xKPCt(COYFhCSzmS15f+ai4O(WEf>s7V2^cU3 zz!JpVi%PvttN=8wIG+FYm3?{`#2&}zT*H`$Fv8=4-s7)S)w(#dln^g3o4_7&ZXw93 z+%uiziVdi_pnu=6o9mlxHS@XpLbuZ7sL=|Iy9}9^AQJCYehLi$FM0xFAe3#r1?+tP z9MkXq#zH)V@5wgiX5=_ycQReXa%&KuVG%BKOn-cm5FQcGxuV;%qm-nHA%zty&>w0V z8?zoB9vU)&>+LUnI)B0aKz_7OS}=M~0-5k_;!`S?Ud(CbrAsW6L%`nKZK$bNVVnJSYYRx3_l2XQ&;@K%>W@~FXjGb^Pz!+NWP(P<&SA8tGC~D=S8o=P@Jt9IAP}4zj zPJQPCB!UNhMCDjo=m5*J4ySz-#Y1kk}kZo8T#0w3%-@?&QSAM*Dy@!#d;;3RT2ozLqz z&tzR59+KV&h%D|UrF6RQ;D9FUUb`~X&utYdmzS~`A}f2CuibBh^M3-Z z>;FYtKXK!q(c&e=lk?&^0hBApu&^*5Ib#ri$(P4|;2E3p=9Qzr`V9$LTpzmE!@|n! zzT;myj^_^UR>lMsD@L)D0v~GJnjMaJ#VB}xf<&L0U&=h!;-59^g!cZ*nv(l3P>vp{ zBWep9%&?!af&~{x<3u|KXw*dqyZ?lnuuzDnHFT>P|a3!wIPA<=@5(w`{rgIcSlEumMe7ds&b&Q(GN=TA-IZ>UdG5M-3ZjX zBEm}k1}0R?m3()q$ai<=WFV!eV@Rf+k-n`(VulpmsW>{Ort^0hUcwA+1BR!-5m$7v znB3*cOyjO8O!1h}8DdUr?jTy)CF+mZrJwOUa|NW87jLmm@e1O2OaMds?IY}BS7mmr zV0#1Frg}jzwhmWw?_z4IIm4!rrN)_*?D$%V!sdhqZpTbz$Rd-8a0;QzEBqMb25~d}rj|)gF@9b|K)74Fa&JI`EO^lD@4xZx9*84%{6FIrK zDnss~`2XkB8gvMC8ka&#DJC6)2cc7p+M59TG4q3r;_ym48o-s(zX>*8?-yK8lFb=w z{f{#2CI{5|{6Isl^4elq3PW42>Q`YkwcIR8W-tJAW&z^WgNX+G?O~45V(#|(&P>f; z372N^lGYzjX-EpW>$ut)5F>D$uhkTJer(wy-awS~|KZbQ7a>djL5#?1kN^l1^^)g4 zRUV-jD(rfu_1ZFTQqSvI+BOTE_4N~!W#4$C$;FqRjm)#LJt^;t%_hb9MXqMB;7tPK zOSf1Sc1b81Z|L1CY)L`1pQ6ZHjYiMrPsS_0jUW5#O!d z(P8ibj?YUM=*7)X>mr17UVtIF-<2$q#*8>-1Yt`{OHBD?u48au-se!luonj!2O)z46 z7Bz}$+|+Q_3r~?!kih|7@jd|z-f{5dR<^&^nY{>! zyzZxk&gml8cYhWXko*%e#O4g>F7k}!p{QAyl9-#J?-Y|1nXR(|HUZAuOQ@ebGrZ2N)^}-Bqrd2 z=Af>wL4e3sRLjWd4KB9M=Ra9u=E|Q)D$ll#i?7d|LKl(k`cLZP1$BR2oXhYEYyX)J z8@zWc>8-5<0>UO_O+|%vsHXftF^>G1SzsBVqe-irdm0J`V9)lbsY66(7=l8cN^WR~ zgsfep4!230u+GqPCbF_|CmOz(W<5UAV}EWFF~K61qRX{Bk?hzhr;6TiQd*d+Qg#Rthc{ zE)eSJBf6Pkl&KEp^*8Gy$J7}8@XVXH8GU%W{~vE}9uH;v{*6y$i7YKr_KH+ODrB7s z2^9%b){5*5*$u8rsDvU!mdL(KjD0Mj1!La^W8ax!j2W{&m;1gy&-3~H@p+!__w{>T z&-F*S&hxz1^SF-leZJ54aZKa(h|>Ji4X9uWW}r*lw+S%R~M=C!-fBTzxzb4s_V@PUic!bJ#GrII#dk#;&xZg z%mJJ!|EA!c)rgF`|JZoqV;X_IMks8k5NnzpxET*h%1 zVl>JRS)mBfA_tcT^5ecS(hE!fa-jj^>p#;l5IMjc=0oQB`=0JC)Xsr7-nNow&Gx4Q zn9^kI+kw8PqDtq^Yb(FP#%Ow#w3QI`cOZg=u+nz&=4>T!=y#d2ZLiB&^+|ut5`#w^ z-zEu}st~@pnllbRIyzqaHm}RoqP;=*;90wKg^TO$$0A4~6@X7{t47I)^%ZGqcNHw@}abVYpd$n}`vkq&+Xer>wU zRLbM$N1i=<_UZ`y>axM!XA{FvBep`MFFgFFeN`ZY%7rU7V{y`)nVETYe>$QR&wC=( zpH(UMhYh0P>m^U0qC0nev9ntwx0Tbwqu2CsZ4jX!<3Jh89q+*>a))lG4wMA@fY? z=N&voGwlGAczO=^r@TFDiv#ixqooa-`G&j(PKPQ1+iB$C$a2#6dknRSJQ3D;*B zJ-SvBjS~{Y)IC397m3d7HY5qa3QqjO*pdtd>C?xkMxcS7(f56`d`NtrL zoNHaPK#>FUXjVcpe`CT!Z0zj+IuUrjxx|uZ$Wk3vp?$!q%!NC_cGVBIC`zaKSNTv< z)+2B@)$qlT=T%c6<}oMEiyqc9$!c>vBKRQ89K)aa%g3^B0Vc$ald0hXE$=RZb?*30 zn)dOXnAE(&!m5w8wsI8G(haB@@e&qP2HkW^)It^#qXaUu4^YR`r1Xutm ze?wY#xdP3K)>#IuXNnS$ppr6?Wz&_NNc=EL9} z`V5Jxie_eVEeT~J`Gl2R%N77Ah?l72m{rgN-%eE>ELV_}mKOf!SxCpdhuumvsqnth zh%a9x3f+T)8+K}t!+wDW!Kj>ed0}f#W@)(K6rga>vnV6se()3l)fB?$*c0XFYF@I0 zH2pYaTmFP#4td@!F}6%;g})ILXSngajWobB0LFgEgF0Z7+wJ5w-eRV0q&HNfdpQr) zaZwu?IWAr@O-(Q_Z%-qAtcT-zIy-NB61tQ@ zjer>B`DxwgDLM%|OxfR~84lKfjeh}Ot9EUwJx^@8R zu$7t7Px45A+eZr2a^ckUR(++=mBL#7^SQ#EriN?i<6xJ+>N;d*1u+anIT{nXKD$9b%Q9(hMVt5_Tb2{HgfWg7W_6BS` zGcAwW52+8J6Mz2t)qAXo9W4G8CvAZw5D4WCXtCmbWu)VfN81S8bZ#;WK8iFM`Sef1 z6tWe`m0BG~g98~p+=l?9tvdyZY>zIL3$B48lF zB<5t-C%Ktkj^Z9J)4c6!LtTgqUs}WJDp&JofO~46#xTyx#*c4pnxuDhHhTOKq)At= z(wt>PHwqdF_AtcbaGMxunX9=002S34GS4R)5J80MU5gkPEwspxG`^iDCAFhN0t{VG1 zyrz*^GLWhW?2dxt!Ra=h(Wqu*hv;Z{pSbo&C~D2DNe-eldC7xVMmJ})=fjsM<*HixXke1c9u@biV2M}ehPrm3jSu|>l!e4cE+n3j>z z`z0(2D%SPuMbH83ArG2PAz=2K^#KCE2I|BJs;rN2c#G)S$tdB<{Zptb2R+G?h<%@? z0o-Imaf~VY1&IL7QvR4MO{N*%56%*v`KiSgtW@G|CYXKYVqv|c^k0CtT zQdNS%q(O6J#KGu&UwnDjUcjwB1T=`MdY5gKmXxqVQr^AsREKa3gilS{=EoT+<| zJFSbXBVP+#<5UHcL;1ap&0yhZ@Y`3q&}tp@QaP@kIfVW=$kDlemoZYdHD&>Qr=6)_ zJom=%BN5tr{9MQjsjhIev{7b3QAB{=!;whC#fg4Xb*AImtqOQ9i_-alw z0lv7r4tOJAnpQdQCSZq`hK(O%mhLjKwS8<&Zw2<`5L@yrpkC+QyLa}uNKg<0E({u} zM2DmKzBrMWp4FJd6U&gM$A+xzcuh7pnA`+I)0tP~;nblwW}U!wSGRf+I`DB?vDU*WuGQKb4l*;e%&DdE5dYB&49A ztgFSW7=jU58~wWIqw9rc>Z>UQiOO02Tm+KSm`~4KxVcPSfKRLhF^1O&%y5Rh9h0cR zG<@)mB)SBJi0uA8s7l&7z-rmib6Ha)g8TRL9*J$Wsj3Z_6)JPvAcn97RCQCfW`l#f zbe@;rn|>WO7W`{($ za~~D3nzBKP;F=y5l$6|D{dC-=2ysv=&-#EIaJ;86m@2~%0bP@gYZ&q`*u1b{mS*GZ zD!Xj#^`)SMTZdB@xZ?X*%_O{2(5qZvvY-{-bnsI{D6Z=w=}VuYv|yoEvBI^7Ov5if zKCItdlQa7p5_@^cpyd^-61?+Oj7*W=zaLFXN{U{ma#+%aF9?Sy8ZB3Y0-n!SJ{ewj z8L3tsXnu+MDgg362EU6T44d4awwU`o`}I4g~`$tn(hQxdEl( z!cQ5D4+2eJPx22Lp_I;ds`qxNpXrGB3UfV}mP$(7VqijvxqUc+i0EU}9v=hf2;pw= zb${zo5pd!df=Go?C>8xWEQ>2E&I1Ah4^LLh4O@D3A(I!uRovUsbh;Dz{Vo&fx7d5n z+Ap~yT~JTrJB#^6$IFqea%zuVfKX|r{qpbqllav{a|Lr#uc?-cV)UfFR5z;n%hlpK zfB3#LJbcURoA(psou!@FM=3p%XU-@@3i{ga?+w3j^3^pK$@kR+-Q|SI^YIUEPaxm+ zk-Vbs=1-nqCLwTxW`Lg0eIQJ`6Ua zQcj9FM1a0;Km8hdDK3@C_WUrBMg7fT?Vl-Yu0K z=8G$0oy?{*=GN9TP&9M-QMYn}o&UaW?P(n91)U^LfR-(av)+fn5(AV^pDq*pq;7L3 z&B4+w^xFiX^HrR*Ky^|A|X`{YUuvnB%}^K z2l=7DHsizp*5nZIAIkq<6$Ah4cK_2Y{Rk`A#D>zqRbSCP=<@PlUQXY@eIP#F$_gnw8p6=LKOUKKN z#|+wTPEE~2PzQGY!iA5L8uab{7sN963Dt^6%`9kZc2ngOEAY{8ZC4Z(bws$oMS!H3 zj{1(QoSfOyr%%hg@Z^(U)xr_ef4)eSg^<35o{?3y8bcUQ=w$Rc`5oIoq(%A$gx-wp z<2~-=8eWU3Whs`|!#1o75u(!R-4%(~hwggQq@r!E-}O?k6TwEDs8 z+DFDZ?t16fOTduw2&FPHG96k5Fgqe0Zl{Zo-nrtf=G1(zZD@H2SLZ~%Q=gnTUVHG= ztMyV2jIPmjk6&<&S=`B`G2=Pl`2L4Bv2%zmoqZa+Go<=b2Jt|NxHli6B<1qb4h{@lUCyqr zAHQYn=H^Czkl8KFnivc@t9R4b0+e#{LH_O;TXFKj{KA>J>v&n@_!HmtF#*p`O@7{) z>v)ipy6x#%o}8R)Cm+iD{D>)3l_n=Amyp#IShncyLZNbA*v}lD?jd0(x+kEplo)*smNo6so~N)J#oJm@s{^MkXi>&L+8_>Uj2G8e#1Ajs>i_knTBvIbNw4iww5hI|nl7xiw+B4kn>!qma);CGahj3yyYWg6JH zchXk+umZD@^6Mf~nk9M9saKi}4SETzidPP~;1v}YrsAI29SmZI4!ri5> zG0FM&bDf)CvZe7nisa%twL$2%fF~u|1e^L{gZ;)kpuNQ6oSZXmm@3%?H|}E>JWQ2} zP-A;5Iu_)}sGDt04JYB$d?QXwi2j65T3?pYRm^}a-QSMZ0f2`hvgUIPfR!bUo`DHw zs#O^=$frM9lCG1}|1BNm8(w2Kz!^O2fFih(MMQ7xSw|;=N0x#VRBj8V9kId|sEp)L zLUk>JDHU7RS_b4`KwgS1pxgNjg#^!BrSkm1GDE~|EL|j>`pDVSB%rQ#jWudlg<~qa zxHuNb+S&2dGY*&E?k0 z3QzIql}^kiNtlH~K?@O0B^0Gu0Jc{@^1S8wTpS)A{@S!xZnP-?Bv%vw7x7ertK-AB zth$TpGQ@%SQyqKL`!Y)k5Fz50`Qb zB6#`wrkX=PD$d!ptk{@bxfROcu=J?#3hAvu=PKZjcH;9Yt^U#Z$)}tvTu=IL$^ez) zu9H9GT!3|;gzZK9PT=?~Fy&xMF?*WrOdn4XIjy5P()Fh+{@&6)NB6tYp7bfq&P99I zrP4=K96ENpC0X$<;_UgeoDrQ0uV82DVwWf}nv}c`Pa?W7Rc`%XV>F#D!*LD;C^w8! zE>ThG^mpRVsw0OY`UfgxUstr~88aiJGSU@5gQSlPV((0302tA5Ty8Nlmv`Av)P1#3 z*)AcABy=jKuITeYA{1DE=MiOaGl~-q9A3%R*|SE^6OB|vHE5E0TqL};R^$qwnCE0D zlY~?2h*|B+(30Au0unSvVqhz-Jshednz$=*lB@!M(Kk3Kz<3T4Avec|CMQdV`ueKj zVNbLG(Bim?DUkxtynTF<+S_mD%1r5ptS0d!4(hzZnIRAe?c;0C2K)fTJ^dg);;F zGb=7l-3=%+TU$rwNj34(UtPYOy#$<1FyIUe#b7MEfFe8w_e1R0y#7?Ct_FCh6^+>J zOtD_#^BN}LN}n!byF1=!xSQ>}%w$C{vW>{AV2&u6CO7`IOV6W9aDv*wm{w4;KG4%c zT`H`qQWAN+XL?cfv=h=AR~VaTY&#I3Sxw8rB%KEG?v0f_4(%tPKx+c-o15jOq};AV z`sI~WJv<^EU(ld&^c8OG;i9*|RwcJ|(#sYRfn&V=<+iD{d5-U+(~lQ?)inh36KY|Q zrX1F&jC?h9u~-urX03=rjS<_Ts4I}WOlQsg7_X?^)m5xIGQN@3$b13&jKhYsA{Q6J zVNx~b`w|WkzlzhwfER$T6&Bn2sob`eF9=*~9vmMRX+*d42&Zg6f;|!x6#V1ux7ySk zdj9;`o)@7UQeiDl!nf-z_oe-$^euyQ=-_Dn186-9rleLW_eNnxc8}NqBfeJ-_FVc~ z<3L^C7(3eba$qUObX0B?qwsn#w3QIUYt8MY)tn2kRq^Cl6$22%a0=+I4q>7PL=Mtv z$dlg-DGV`JvRuBQyswUbJ>pgZ7WJkCY6LJX_Pm(y#>2@)^6NDN#b*OHDFl7|^~JGk zfq}IS*ewE~VQtNIR9P>1Yv0aMsIYH3jv+Q)#~UK$)cQ1|ry1yGcp+bSzXv0_)R`&O zC4M=(r2w-UBi+(6jZ{brmN_TO!=X?js@^fXIfEr25a?_uttwFt#Xd>KnTFCTX&SDi z3Hd-^%m3T716}%^1J=GlV4UWsoQ~P_-^A^@x$L$YB9;Rgbg(HI4c%)A4y-1oPIELE z+cq6V5nKMXnvJ!RUne%uHz+-ug8-?zkec$lMv;};Bn)8zBhz0#mMh#jFPd6Rvvit~It^U$$3GH?x^>_4 zg~>%)y|p2Ob(j>>Q6h>{D}}GRj^Q0Z*XN9%YEJh5#W}wi9_ZDk`DG00R|>{uQR{0$ z@QFVu3=UL4P0cj&w3{1vZCt?x1R$s}BGlE@HLYC7bO03#_B-l_1aV>;jZ}9y=%)gg zvlHjC!_2+}Iss0gX?cigO4l|*gZ2OukX^&1fNJ&A8{#<14uLcr%F{7xWn+BS#BGH) ztVl(pT!(s2@0s}C5%RPRcW$;ACGY5JcbGkf+EE7l;{eERE*A4_K+Uw9(aZ!ZipjA9uDLCy%{vz$D$y2ydi^we z7S(X5F*;whfxdn>slUx6cwNu5{*z~WyiW-Usxh&MT(rLb#H8`pdT3KaBJo|vK@y@n zO^=^|BiTFU>u17}PRuqe2eg;y`!=I~GrmZIt4bWy8XNV|V#6w3QRH=RetF=A3TX^| zJPGY@e0FZ9bU(}x?kjT?CTC$f<`Cut+8As*&p~K|)1FcHIs5x0llF!au2Ti0KO#izDYd8oobmok!cKwbl>wQ%9615R5D=mEW&;`Q0M+yky$iRm)qm zAKqG)lB0be1h>LvUgOowx*o_hAY}$z3cMO-sFu#`heFy5RKQLMUceHoiyC$NCg>ul z*5Gv(y>j2{qhHg~4@3vPE}0l7%rcX7-^IyBbZ5;^1NSFE@Vwp7LtH_J$+gb%+eUZ8 zii&lM7*%KVq}q?8Q7yF@87HR~*ZAh7kn*oaCx?I$Dn)#fuwd=^raz2h-OcKE>ifZl z#fk9mTE!jxlFM{T)%T&+4r2MPZ7l{9}fp|AQFP5WIaWln40zQXQa ztn&p#dhn0e&x_yxLh`L+wtZUSc=DzMI3q_f$noMmwRU%b;&2$ph}{SZ<*bXVVI=*i zLrJP(wK>ZFXREv0xJ>O~Xq*X?E^fG3&*6WnI_R;ypsOS98FY->NqweSGsB}6*o1zj zroicfmo6P$RoQ5bC1_NqgY#s7Bq2Ujf!pOiapJ&%CO0UzVVa4p?N@We4g@Q+JRM`5 zwzE~ZYS>m`_N|kd*KxU}@HxHKLaL5sbdV;fv2wx!K^V-~1r2%X)&41CM*)w1(%roB z@_YS&_@1>ptpEzl%@TQ@wO!<1)~vnhpXMS4yXh|@FRxr~_5w(Zj}L?Caezkvai=KQFk%a-f_mr}L`bF9l{lU{kPR<|qIBtQ49C zi%)Q_!jZ*@A<){i$YFJKXTm^=9hMoEogJvXpK=M^^glpOZpQW&{JxgE2*D&6bK2b8qp?0QB<^8T2`hl8PRHr7?=KkY(2 zkejs@2&&!{Oz0|J?Zn6~vy;&G0EB3W!Jd6#XJ%|X6TeLmKXRXCZ8p%h9-NYf4@z}t;)}Dh&xwZ^WPn%jn_=26GyxOs zbxRIuqd`8;I+@#8Qt;zGlaIIe5Pg!T-WJ`)bc__H_ZP`@>x}D*e^F7l^#1+t{Zo67 z3vSOpYD0Mc{u6Rb@4r<15C8RFZT{ao`G2AHKiB{N-udzycks}ZR16$7p)GDv^DJB0 zXl0K-<7{t<)F8B^N5PEOlBPMbwb+b<<2KheC01efdKS@a7FhE+S#Bu%B>_LDKjo8{ zmCxhb_l(!VT+HnCtckYMn4wQ)yE2vAWno( z*B5G6OZvCw|5SoRlk9`CYX*sOgX>7F`%BJ@BUa)kE9~#`F%{|`&n`4|Xe6z0OtjX^ zEFM%1EUHkuN0eHgju7WfXEu-~g~?>;`}8k}Pk!?$*N3s>{MWmNKaNW%ELf>H^!zC; zfyOUsz68w7%5KY79m|0MXcejx*6G|evgQ<;3w+9y6aec$->pYs4JMR+{ z9il~4X2AH}6MB^CD7V-wd5zD7;JWI53OyaHq!Fcl?Hu!#KmI`ftp?#&q2ThS^w3gt zq2RCZ57!_1d!FSiDULVkL1>(ftbdww+pA?5a0!%K|5W{r`P{psIC483#W#p2mHo7^ zf63Ks@K)nK*6w>S)%Q-)rTLd>0Q!>`b0kK-B#Qh6TO!B3&Ef7%|3baxO-GTqq9hv- z6Ibp$s56b-KHV=eA|hGaDA{FmRsIRDb>Q^;zWdPL+4Ln!A4u6Mh|}%U)1g#rgkuvh zVCc>Frl0}j^D4mLOAqpznjF^CA$WwMj18)AN6~lin_zYdXHa+6y-L+7y}_p%WN1RS zDXqr7EBKTbzGC&Zkv0$uSHVpW%WNoPslVV?ycTp@I+Wal?%Ob1q*?NzE(_k5gUA=7 z#Gy(-u8gN&eeShsH`p{7M2eEifWS8TLgw2yV<>p8^=KczW}^ezT2yr)`Mosj%N=|x z-)97_VHnUTgMe{i;z~!P?+#?@MA9OTC@xH=?{gU{>IG9qr^K`-E4p-o72m;Nz_w~{ zOY`E%277v}>7@D1xFs$KNmqYVrsMv++FhYz+41JHXCYQ)ak=9xQ5 zc9P46$aSt^W@P%EkCN--jr|oQuij9e#>mJ>kfF;0X(9U5?{%S6`K}Q4YJPQjd33#} z?&lrxgvPCvqhO0yh}gNJ7*KfDKQJ&CC9Et*^VwSj2WOoH1qJ8JaA9DMyd-dr;N$D7 z9}CjlCZ>St{3ye6keCjDbBOSRCo)e*@EOGR_4Ts~hwe4rD3Q}Mwhn1jRZ{~?!UPdH zRc2!$=a05)GJXi%IUyMzuXnu|0$SCEYNdM6TKRPY)@y@$eyWM2_b^~bh;dJj{=F4KPfZ0*pu#HyfB`JZ;-AonS zJ~2^-k`hht@18c_2h$2yI*3Hp zl>pRrV)mq ztvF}r=E|t4Sy&G}qFeb?(lV+IX4|7K128LDd6zQKtWN1sz*cuYU2G1ZgG6Czb@d1s z(!Bb%065<@UaloxSPEn0o$~SXVY|exMC%qe&59Wuc3FrPt<5aZUtV4=C@S(63qcIV zIBn$L5weopv!N@sw~`UgarG-5DWyMlhJl-@)5tF?7&pTlmx{D|xz3f=#%Et^n(zzp z?E!bmLFWdrG{?nDJ4TM&!AuUguc+A74=56Hta}K+-F?+O{%#Ogt*L~sILEbY65AH5 z$70 JH2WIQU(|wx;c>_HfKbSNx@?jyLV=&e#vQ0B)gs|ABkIKTg+I6~ndA^vVnY zqqvVJ9_+cqF3G3Pv6mDTzG~8T=8HSx)zmw7haYX=MF`;DX=hBxOU~=SpN|=a6G3lE zXmdKr3dIj#AzP<{R~8J|X*8(1?>kNEXpQ~moy#}t3L3~cC%!_#{e|gr+ryWbjQ2$O zMg^VGRk%qT54Gi_E5DF0}!nGFwz}p++FCO+-P~p#(k>l(TAg&Oo8}RmW#VM@N6^u=@7G>&~4h zaOJ_|{{63`F^kSSvo$XU5|5TF;+omFoW{mGmrVA)(?^VhnpL{}jq~)h8S)z*Edg67N1*&n23I3icGKe> zpWJNNNV(dWo2a^8>NXgYa+Eg-ywL7Slz8v=8fnu{L}_|~ciP>-Vi=*kaKLlsG^;Pe zP_EYe@?z>hOA!$e+MY%g+XVH$iycI}j)|jdBjL#kfyChZtA-6kFGcY>ePN%W!Ks=W0_9Qk`}8lqWo{z*ECLdzLVft-VpSGJz{%_?kdIn;-zCMG|yoeC6N z+c^!YvIqBk@}uULc(HLXzZ{r{3*2FueIk4q2o}BuV1o!<=8Zu$Yo3Y3;w4jjYzw`5 zGIAWn3@|MAkS{bVepbt(sY;tf!fnzT+&Vug=!Wdh0$r8Jx&nFnO9Fx33}F(sgtpbd<+cKXB9n#C#-bG3^ zrFT$yD?G^^QNq%CLQ1Zml;D$VS?)lNVS35XkeQybscF2bs_Mt2qtY)`;#kI2Xanog}*9surKJ}JOV&cQ&TAq zf*TkY-BX^0FBZ%iIZ82P1O#fG!OR?w$FFARrVsyFNll=SU-nz;0W0)z`RVtsSOT{U zhdT-iwj(-kOINP1nBVtI1V@4^3hTP6V|3i_yHuC;6$T>dZCwiql$L~}7|f!L&(|5S zHe(Vo7?_j~Qt*Cg-Jl2bS3Wf8JiG{o{GwgLkS(r5-m*dE(m^{U-%Tq|@lcagrWeJX zXWf(j?`Q;jJt*Ax?lUY~al@~ArF237cLJw?yoC+256yBdo~+c3adYdFie32AB`?03 zQ;A!CV|LJb74Q|m63k;&>fJdGTvqo}<$r!RwJN|o#A z%mq%3J7hN%o@UVK*#+38pNMZP?UEv(X%O;!Y4 zc6+-%`~3;RaS%BXnEiFO?9%1SgX05hIs5eZ8dD0X3vR>m1vz=u)epcl-a^XmDS)|! zg<>$p+ikLb^db2IapSs}Xb8yr%Yb55;Iez2SkUN%zBf2jxQ}jEJ?qo=CU%3%g(0v| z-rU5(EwpH0(f2OyMRPzy>qd3)sD-Mgq;JW-!V`g4)bP6; zdpLoO``9a(WvNx28Hg5ow&t5@4rZrTbxZd^F)wKv%RM2*bf#9i42P3ILwfFaZ@2^k z6(z|4O^C|xB3!7{jgZY}OGYl*vP@s;>#wlAU?5H6VnAri_4>iSXSX7FE7>RRPJw1| zIE1?eoN^r&3P~@PwWx9&E+In?%wgQW+OT@E`Ddnf)n~l~v!lshmN|NDcyKT*1_R>d zOBI(=8#r@(7Ijy)X|krE-x~l`%JHDr0v6%QhQ|b0@zmaauNi`cqU2D?rz~=HeO(R)H87^W&;k5h z*0v~u|6KVoSRt>m#^qJFqLK6pHlt?E#+Mb#cl7ybg%Xv=^{Fd809vN8$bp-ApRa!N zo`wZEof6QNSb1NxcHtEU_PF8CK!Dm{hLyB|H>~{-{jOWB%xYQM+q)Xsbd~KUn3SJAVPR+5FGtY~4tP&F+ zH`b*n=_Jq}<@&>^o>i4`zd(h_Hmw2`O{JyZnOeQ{PUBBQ$sJG)@ohi4eBtS2yq7V- zlXz~qQvOOIIO2d^N12{4%>%m+9AE<1xx4z#`DOEoT%FSE+hbLThB5bbb#=+WIwiMb zITvx}=D7Ui9=D=FepUiTn)KwQ=}7VLvh%v-E(jD1Xf+u>%fOG6}!O6T};i#T9=|3LQ+1W7F=?Z>`I zBbCC&;hL3m7W5(Y{`Ji~Xu*?AG3K&!)Nuv%dI5cdKPM+PYucRiCZ!UI**%OgaF*Ab zyI^=AVk%N}cn!TGKoZ8ZmfDP!6chyO4>q9a;1~M@j5Tew$k?`Ie>TYnrIkG_dvyH~ zv3m$qqr6)Mr1y1i-}vZ2xDoG}C*L+1-nPF+N^gLHIk0PfD_rd59z6yEjPHx9UFWI3 zCC<$JJF_TQUgvF6Au96i+uQc`IpFm2@FXw>jP~|UUw|OjlqAjmRw8Y;i@Hqq48nLV`rP85KSD*VJRE>G*kj-auEG=pd8|m8^PT+I;YSO2%OqQA zNuqo278vxXx@_C>>cAN@4UB<9N<$)qci-l-2bqW?S%b{XniZZA<1H&sx0pIlzgn2BrO@jwSN0l#anu=Mo+ z5j)PM8J#m|*fot4L=*>kbUY+uI3~~M7&Vjcl^6@m#AHDFiifB=)y1KG1Pr&vt0gR5 z8~1^TdN(k@c!mfn=PCcYIh5X$^#gU%HHCOg^2Nt5KLjGxRi2T{B-wWML*DCi?x_`H zA7p~7({b{^GWSA-axie4XHcz@%zeOoA0v+1mG@RJ*{jQj_qBrIrR(9vdMA5jn&OPU z6n1}2eXOGnf!s3wH&*#$vi#7$^pD5!f1Uj=#`oMCh{!+G@B7&QLovwz{&$-HUvCXS z{^Kq7L6wh~TI8}q9TETV~%W>~v=f{RR5>=Sv*ic1Dt1>)S;s`l~atTT`wa{)Ko zyU?{+@tunzMsP4o;mz1RZ?cQ^vr-;ip|U-MJ`DWpomgJgG=emO1nciB(m@S5z~Yu4 z_$!73`S)jgVYjJ#xAtT#ii8`AG>r>e2}u%K_^o_cnE3NySA-OvV-gesxNSro+V^8< zIGyKvg!XVpQ$hlK)h=S%f>`HP&$? zcm$8ARdT7wDKuLp-tDy#3Nac3hTKey*HoP#bWE*MR{{0_hVj{;G!?HL zW}wH(@2JK_z4rYU(4!YInk^BbA%`Va4nQ!UEyJ)%Q^bf;FpI9L?}hDBLs?nbX@OC> zms8rqB$C3DADp1@AS^~y&G$CgWUSm)SHgxhPTEkZDhI`(#xCaq1z)f|=tYt>g9FJU z3tgXypkrY_)(D)jpi3ZbwNw70Cim2O!+XCFaY7@|`^S;z;8n&@03g8!i7O9zuOVqm z*Ny=)S2;$tE)5xOlcj6_Q{j&~hDtG*m?G`=u)W6DyLziqVK0~b-fr{_TroU}rbrr;8;-_-CQGeQR5AD76*-MbQf+ByL1W^_&K7}z&uh!V9@}kE*ipY zUOXmQ6k~_amPs3WaXPdzIGt*av~1M9-@bP5-sAx~o)1|qKN5pdt&*cLY$>-|D7V-F zAJDnx^^Frud?#gzrI!kk;h>iS1#*>tr1T=qyj6?F zm4g~)HxNn~j2N)}VY!5LiqQg>$>Sdf`3V#?G~Jca4r{y!G`M!!IVjo=7EBox$%H4j{n`ADo)iaxVcJD_ zB2u#A$L4vOfHiLQTD{bAtFY490%?cqG|=ySr=~fJLVJf6t1?2f`815DGmEl%xE3q& z;jMW8NNXTKtauIMb9bfPcxT-*J|SU8Wdk@R@tU9ZMmnvh7&*C8docDW0g4}in8k8& zae0G@LGPrgtGve#+d!qIrGqZy;cHN!MEc&njJI5VC}z=Ug@ZvXubBGrO-XGd+efSq z^n?=BZWX)be%~$_W;p=RiIH1(U&XKqXp&$yv4GsUo4t1 z>}9bg80zTaqM$;2Em$3l13ahl+hH>JZ3^3w+Ys(b=*3qm-_@T60uSzWo7kLQ`29O zzu0;VS$w%rKN1q>F0GUn^$8rg# zA$B8_ceU_*=*IIKwwqwpCt)}MTmut_g<7%f>svF~NM^RLVj!7^Ef6BpZFqB@)VSq&P$obOTW+qv_ zLytCvJ)=JPbowUvn|ypZ2?+@jJ86bvlYm*8{T zUOhymTYHYSJnebh%M+ns&W5=3bnGH|x;27T7+mea!5L~Ge%#Z8YU~C0+S%K;*GKI- zFp>ZgF$n+`pvM-{cTqhH%oGwtJa3H)4`$@pikRv)dyXZYo{tfcIroguy^cwoZf^*r zHKY8DvFuY-L-Jyc9pWMI5PA$;Hp;K7KM8!hi3Z8;T6k0q>5yKA=SfJ!5r@DRI>Yi! zO9A#_Hy*>kBkjAm*n0PsH1Tp^-vnOoOtYq42dY;EmW=I=yRp@*-vs5_nTgtiQO9In z@tg{}Yt}nE?R?>7ftOOSor6O}sW><&Ttfrk0OM~B%Fj~6ruH7(&8>k+Km3EWaS!5y zl50idrR&vy%FAZmSs}xGRp^0;Hri!oCzO!>+B$Y00ZlUyT%ZA8WR2KQ)%E!UOlt9G z+lfXdeWU$N#B1s{PNlOL-MmL}YYl4Q)9w`z6SWaI{xo_;?Y_EpO^F)nf9~i2SQsX5bW5Y% z|5Cd}rV-~lP=Ty*KUv?R+B=O*=V^({m;MWfy}!cQgzn=3KvaQd-biF%X!7ruSJ=+F z{dFZ{+_AGeec@O+8%V$SOH4T#^p*T`GyR-c@^8UYY2FgF_UDgU-I*3W#JD?`Kyvzi(aQs>P^JRX z5|@tsb(lxAz|`wHKEkBD;q?M#vc`8O`H|~Q#@Ob z7g4|Wl!Yk-+|HrIZa4YmNPQ3KvAyW!ZC%Z1r|YtaGwlk}_du}t-g7+Xe&f(tBYS4; z>ZHB1voJ+OUS3#n>IVLS?PdmF@XzJrYm*IXPg-7zkseG}_$+_p7#yg-V~{v0P6|no zXC|DJODQNqJv20%Faxi_Q4N27ku40Mb4lW;x?46WWoLrcUZh)zUG$92(9BKsZ!(_<=_;z|x#;5sDdWw~aJ7u8gxMGD zWxy|Eto%>0nTP4JMt}7fYqJX5loCElU~6Nt0dp{mpXP0QDCd^`J8BCwSu>C|>#x&;Y} zpk=<@AgN%Df;{ilydefiIsMAz09-KBft7SpTdntK=-4;6&;6Uo!srOzScV(vlqh~E z@8^X+hYnKsv>fadhN2aC-n*ULJ0B?Jz5Uw-WwU-DO0Rr;yGIhO9pm?1!t5nFUA1p+ zj+fU44nARGl_I;)wU~mRd^Yer&6G0yXgJ>Z;>l`MBWj1E*zhl@6aYES*&V=kl|6yu zrr{-H$LtDdP*fZ0lKEToTi3e5*C=0aQN6LiEk`n4sw2AH&El}|HELJQ#&gO1b(H+j zP@Hb-^!KADj5=I&s!^*EI<(bousi_h z4=TZhSB)R4X{ke025?$!eA@#(H#w$TXN&D1?&?OM&5TZd2Z%_4x%2oXi0YCUMGg38 zM*W<@|9tj4ZF*IlJ+*rNHVHK|FqNBabW1b_GQQ!XF=Q}o-S0ETA7XyfSKCM&2N`F_ zDY=qLe~S^9g_RBZW@F?(dp0T>E=H?uj7#eA7;2~i8iA(%-heTU1z&1N=;Sw~>?AN) zhe{2(*}h{jLQMXlkd2Dz%n(2$#p$*sC08H)!<-GbLbDAkHRIn`R*Yhzb+1rn>hWBT z2n{e)?eHab2O(g2T+0Itt^~KHYxoz|`;V}8tgtGk@w_O#sz_e$XDeWoUA3lqQdbQC zt!-3{pL6N56=N04idg;ibxf!OuT~r4ji=KV-6t;SeVx-JSGlIDW!*uOL@c)YrE@@% zzvw5m-Q}Rzr|G1klYI;A{aCm|;gw*!B?h1CTN_S9$5HfAUJU}BMgoEmL0VG}H0*NP z8sSFYBJ@XNRWr>(>#i~#!*m)7n}E-JBEApL7p?!)n+Ly*Ucp5tW_pZcH_dabp;G_r z|Cs(c?)!2c^18==w_I5GvA~+o?2n$#srSaua&?c3?$w8Ep5#zuI4(IicfzYzt_pwW zn~S*dzubHAVAk`?SHJJR=DKmSh~N(UeLjl$jU5+sUdg?W^17T6ooY+4H=uUvK`1&zE@r`m)XC#5?o%$0r8vyS6_>be~=N zKZ~u~WjU5?vw!im{Q%G%bFa+>=Ik2{wpJP6`rY&5di2j(WM*5g`&)0f=x)}vIX@pO zowF}L60mivO!)1IlV<@Hv;17N0G!)Z>aDjqFfz=Uc=vzx_iNAWw%2AvE&N=2K>Zny zsae7|V82QJ_SJXaS_?n|^0UGu_R0NCaS-_W_V-1_AMe(leIA1-Hx{^<0|$ueb}F~6 zT4?ocKa)v_JYNYnpEU4rtHQhTyYH7>cvxQ2`&B=*b^D@?w%{VaVP8F{`bhtBX`7q> zD`~6SufLUryT#8DzsG(j-W=p+Sxd=#+;^sSS~~asKWhGW_4;Ox{mECe>EK;Di$XO7%@r>tIHu;5|&Dv%%$@UVcETkcT! zariy3)HLj8X4rUoF31DVK-ZFkRQv#Kp4HPZ`}3{+0f^7QuyF&> zg>D9hSd_q^1U0!HY&1j*kxMoqim9|>(~5{?qF??qUNdRD9I+ohq z^FKV#`+nc|-`{V~oVh2@%r*BtbKMh^LWNAGddH1VhJAli3UK*^Xdxb@T`^n@sdg_% z$-%C$#NzM+|6(p`Kn!kebwVK!kpJ=ew##Ap*+Klw;jeZ34GF=N40#2G%N|@tx{$ zCBjPAdj>>+$aRnM*>dUNwO7FpFW{rR{UQnS0Bd)NlF4n7?;DckA6g;;Hoq<3uskgP z17bD~alcs4d-A`lkM4%iz1xfLH5fJ!rzy;U9XVW38y9MU$agFvVKmd2TXeQHa3gRay#&E{7B?c z`%%cT++ka02I6@k)E%);o6L!M z2Ad3${(9NlyB~a8F?X;u{Dlc+v&-wa>xAFKUvhojH87_$Q&{`8ET96 zamwy}7m-~0W|xKBCSM(;w`Ufz{z-lMjwE%7{d)^v_s%1fhMIV#qs6WLLFb{sfD<;^ zgw^i@esAtt@U7_?y1rd+PR#!H2!&Y8XPta|zaQvM?|HoollxPSFYx=F-&@skkrKNk zW^zf`$GBOJ^+?j&ca?e>euE#UU~Stp+}Tu}Zg?qde@qw~E{PLclHerMyS3kG^>WmIQU()xRw2bS8 z1X6IoI^frrwxs7*3=@M*4!mTS0XYRDwEJwMJvt+?B?B;e6cws(G{Jt5?#fKZl29&& z|0Kea@?_@1ZfNGK|5ZGS-;~VnUT@#%dl3-H_{wch;O4yhmaLI#q_M=;YWi)Kd4GSo z{$DhsBb}>!fnN=D1e$bD@H)w#7&3~-nQ6YN1@J=Ngcr`2B8MEKO>BLfEfG<34pN>1 zA}C@OT-tMv7u(f27lo_pyu%F+&Odgp@sc(;$g84wrSsZ%tDA~YVRk67^_j$M7dDr= z>2?ayQ+%g4ZAsr5e>{5Bq9d=&vPVzC*BUll=0T*rXONG_%>VHgk^G@wW=v}Tcdym% zAAl9-gR?YlPWC8TJJGjOypMVByKWk#1?;?dvNL|XesuDJJc+B3%J!TFyzifx zqbR;&9f!+^8q2Evv-xW`B)?-OM{e|_~OY&fmHz3pK~Oe2+Y7mEje zcAaJG(UT9O_00pyvfj*iX3P(sT7SA0{FJO%&C{L5Uv+aQ8KKpi6O9fiU%AMdr;gH4 zb)4Zo8Z6a%g;X1%M8%oQba;n+H z2_W&w8`!@HQ`>d5ZS$Jg_g|y(`iN;YSG31pJS*fm4|y1V`^I1Nr;G@e7Nv#pTp*hx z@0gFyQLZ+q3QN|3-M#-2In}HLCqWWyuG+dQ64I?khJG`>ThtWkFg#jwld$NG$y49^ zZ}kNBoD!Bs9OXuR4hO`nCsoayhi#7t!>I7T&6a*DAe1!WWNA#zNe}6JII*37leC*# za6V7D`K#oO#%4~=n@R@m$oJ$Q%8USK%@W7gddB(N+^onSn)W6I$+vGb)U(mB+%i^^ zq^mL;q)X75F?cXaL1!lTP~X+r%fA;<^8H{{<9t>Z5DQKee11r@Xi| z)~wkt>Nm5=J|HnjRFEk~UzqlagRfdT+vlG8`x5C~#rGl@-%-jdb2SNDe2hlr*E2`+ z#4%Iw#wDJ0$NZgr^vO{4gHa=A3c!|%$RNX|H(KjG`?}Ka`=G$9Q#t!Zg7p0Lg8i3q zIqO#iB7K#EO78KpY6&Rn@er)da%oEHxZC@B)Lk)_P`@Qh()W;^PQ)<#J-df;5PFP~ zU|Lw^y$K2N+trx+rLMOAl!4TXCcK?)oSEH?mL1Y}zwbsE8fKCF&3x*x@7@GJW6jWn z4E!Sc?p-{=yA&oSzT|>CmFr*ZH*dN+?$~?=n(e#=HFhnzBaTg+bk@D)>j`)II7+75mT9b!TAQ79B-hz|spKL1 zl*r!Uvn)fM?n*uLcWqZOiY+4uctZH`g^-;7tL5Wu-N~cJ>{eR>JzpF7{QD9U)Crrv z+w}hZaAFwghZo+S&8DUK%?e(fNtO~qGmubM^7k=6k|lhDNAGyJ;ip(=pB<&xSE*-u zJ;^z~VxP`>;?&07W6Q&ZBRY96z7Q1axhYOPrd$w%nYL%q-Z1bGVa1B2)&bqcZ{F*^ z{p42gK}#o0-(<`)&-iV#ZJ=| z?gdQvDfSGQ z-bu|J%p&Os5h0HdA;+r`A;(9ZiEv&axz1_*ht^Wt=s_|42Yq;9n6b43-n9G_nahR+ zoV2)D{hJ=#gtiQ)`|5|~kGpT~CTS58Ffm51rpgTZ&z3TleyJnyACjAUB69fUqi9m= z6#_YcXB~yfDJr_F{VCCWCay;|=J#*ioKBTvdZe>}L#juE!>TmwseBxi0}nP^<&h5P z>nA>vVYZqX+a6oq{4#nac6`(W#+ z7B7diwTyS~IKQVVyqtMH@|}?iF3%l16Ng2dIN*)PDu{|Z8{s- zTVNWpy%bATI^>VPFy|0Ls5M0W`5g8R`-4j#v-l8&{-hvF1Y;6WyTh)E29V*GMGH_< z{NB7~H_{PKGlO=b`hH+qkswm29Q7K7PJBDE>e9JnxTjnHZ!6$Z4TW}H<-X^-yZP^s z^JZLXi6C-#yS;0A#Va|f0J*>TO^8vSScshu<7t?Fs#vZ<+tcZd z3&r8Qs2rnrRrRvnoJ~~E=cH=+&Qb(U9CU9v2svzEELK;6#bpNCkVDm@SiUH9@`S zc0qA7Tl=R&)jgF6*8TXw_C4q?w1T<1a>%(B*n7sUKO-UiHe90g0X9cX-z73(Zx zDt@3P3^5kKU`*{xR!l4x)^UhR7z#y%{U6eT=We8n|x~&Lqk5h(s)8E%d4R z{CbzUrYcrjr@#JVB9NSv^L@Qg5c#x@F4C7{{etmOYvtK7^l{CuHWo8^YXj5LYrwoU zY(aRE&5xRfW9boim4iTdx@h+Ss0s(DbCJ{`r|D-_NBbw0#{l#!s?SBHRC%OqOsPP`rF{HT+tg;C@Da5}d#)8cjL#L% z^ga2o!aa>M+3vbsc=GEp?9o=vIz0LNHs-c0Ggmh4^n!mO$&C}%ki+8ZGzpVb*V1E# z^%c0PM5oeG(W>cbZ>!hNuX9yZR6|RO^~C9?T)xX`8+pKf2;=$7C7cGrj)Q`$#PKg0 zpdYSboLHJ0xj&_k=sSOCLmJs5YtL?ip0?xwtUBM*t91!~o1lyDNk;eIL)Ei=jH9=n zUE@P$+u`us2;CvrN8&OcO>f#6DQv$=WyVSDh2i>y3DrOytSVPn3R+>J7axf`83d?B~h;%O+W19UVBxc2xofP3jl(o;mG$S zkA6RS_hX>tN6UV5xNv?tqy@i44~bNyu)$NsAN29+G9N`z%Pi#sX7LLfS%N=n4?p>2 zgrAFGs6awsx zG9oEB`bYltcIpeJEemZq5RJ>hHTsm{WG~=B*dYhWF;m7#5Vi&Sh#t0{0Xka%CmPh< zmV&kBPq}Tie8=_eHPqowu3R9@YgZ>SyKx+I{Oe%qSw|<*)+~&owO~UIUf?rSmrBj< zpAXUt9G(GTsK#+zk^%79srvjSxH75xe!#{nJD0t2on&o_ z0|raA^Mi3+g;r%&hD-n+tSEW*(50$*Ji>f+b#*c6B@^yy0DcQy`@58s3lCgM>B`SW zZGDZJX-e4XT3gMJS8aTgI?X0NShFw&(B`9MriXeT>4jwH~R|nKV zwvF?ACIjD^n#BMUavvGGtWX6JLxzwJ|R3)Lu`ooXK*3{wSES$K(! z%i1*)?^=UH>2|5{lV-hr1beZ#=szc!zdoFBzJ_!fSTQ9&4vhjNGuNL!DcLJE>FUBL zEQApbS$OSFd%tKqocs*l=J)tU>qUQ^Xf5lw=hXv>LFK3hHIr?VMR>KXewq|PtDC$o zaF~8rAZk@~R(lioV&xcb4G!vkJN91wlW%yw!y>aIFvAQe)-~c_m z+P;-H)7#{8598Uh=1Z8W?d>jy)z)sndZ7gCsAZrK>IGlv_ z+Fd*Yff+LZgi{>M;1rnX46$IK?l&}UE}TGq8k}}k^x4iHzHUc>R`)Ue1})Ct6B9Wl zB~%_B9{=cJGY*4oGw$)6!9WXzxGIJ3O(1d#emIH$4a&32vI!XAgA?SSWo%m@Pkf>7 zbM0_w{yrIe%F53EXY=~@Em{0h0W(jowzl?*8IDx(D_-EL<2JVCLc+_>J{XeXaj#S! zOhK4x6t}240S>Pp}`fm6Vp{hRSbIO5Y}oz zSdFb!)4M&Cz1h#Kn1da%Uz+?2HI)sg4yNms zzbwc!#cP2U@~@?g2k zlV6^h+ZKNi7yHn}pZ=|Li~al8v_DN|VzTT7!80A5SV~rLZ#K|4r?yx4m8InuJX1%3 z4on7Yu&qqgl`y(<*?A|ZHpoofKAqi#v)Ke zMIF|Ls{pqYE`~0H796fG(?<)-5s%x=pUb%!ByjicJzG0FZ9_wAT|K>py@hraJ-q~^ z%QpgRCgq0@2{$)4pPHCN&(E7*Atbcf1)e^oc@q+%4T&H~=<4d;Q2?0ldA2k)sDcf1 zvu5hBvx7cC)-XZXba0NfT}eu5wx@Ubj(uK)h~ z{G&m&nmR1tXc8}{!z?TZNyQXF*4(-?FJO!9pC(6U2x2@3~;+nA834fdM_-{ZDA> z`6p^>Kc}kf@D%&V0UmB{^ViOag_0$uiiq}zDfO5p*FGi}Rp$i})1MP<|A(tLx*5GMF${Em8 zWK?klM!_yk2kHC-faV*PKyqo(;)h*Q-CFRVPZE||{**{OgE?}9-R8{;4~ zuJRC-AnBg>L>;!R?u%aMgUv(f+KVO6{+*u~3i7rrtaVQ8C4m5@`s4l6rbS5xc7u!4jB9ozmz{Exw;R99CGP(7 zzqEr&??w8dCJ@CW#O5i$p2kZNlS z+lY8t*TQSLtC)m2rp0kg7Yw7&L?DQ%{CMAbOTc`zWo)p$VEUhLu^mL5#d5v&aH42M z$P33{Roij%ElnodD9~z_@t-;xFXt=qG@=;hZ_ z#XCsKd`Q3s&@CUqBLDjvyc9XsHoV1xgROpm8J+l+z^oJ~^31=ooJvqG-762!hy#@`%GmT_p7;1o-&W zA3S`Rg&BXpj?UnBt}~sw*nJfMo0K$(T-?1|<){jXuy@WG75K9m85t>!mrrO0_6*B| zzvg(lMlZ72Q7t;hc%0i~$1h)6fAR41u#~(No@letQe;`0cD8Qlu$BS*%Tv8+(=*#M z>V8~g{fj(;8b1CUF=_^fCAx3&YDQ$(yZWQKs^%gP^|RIoY?(SnjQ*f|SoNV+TkGl4cr(akq6n>y;{oddsqm@*JekIQ{Kz$eHX$d3NZ%v6xGINF0@RDBC z&f1pgp>ZkNF?o4+U_sE14}~4+=6lAd0$>ukRE`Nuh0{IA8CC7b z+blu6`FXeZ>xW;@9z5^@%>;lXJq2D~H9JsZkRcn@-$X)Aez@M=wst)sd|m{TxONv+ zKjWy|D6XhZ;_;+tUe!W?>Br|J`|KLZD0PxbV|OqwU-+Vp&t_BvSS=$cC5 zZ|Dyl%i=VQYKhMx%Bw<$qa>Pnh$z_JdcCHujGH-mMulG88fAFXM|0j|_Gf+cn;2|< zxkuXn=r@f$_|%N436Ptik(eX>i>|bqSqrDa%e;LhKEOPk1P;ojdL?mMb(k^L9uriO zMnCv71=x~irIk?M3!f`iZpha7%-r0)ef>VqGc(v$u8xNWlAqy|@wjh24yf`lOQk8QoOtf5${~ zPHzQo-E3c_OELnnAIDd|P-+k0;QY)a2wT~da2&m`urO1l1C6s{9(f!58h!xfRu4miH2B!$ zf&1zKQbc~ISmTu>4cs7cu1O$;V0wYX&gSp$JreU@fUF7en1@4W1g-t=Me&|g!`mvY zzUK?r_4M}sJS7>LuAek8htHUo{4|F6Cd!j!H<8WzVpRxlUy*(qlMISz(#>9mfTI#=YaXYukRu01{0dEUi0# zWR+4iHkvsV46{wHeqgAgE{qLhJ2VFy!7V}VE|toOA)|=b66|c zHj$02!avn{F5K;hKOL=}LOHMZVJYehOGsoSiSBon)6=Dd&!NC$wasFd8kQUt4V4GQ zbyNNqCg($E-;$ow%K09(etrD$hu_H>)4g?-BI7DrWE^|@)}IQ313$$lF@JzonnL|z zU4|#6##L%hlJ7BJz1qo(^HVi-TWML`@C(>MzWtW6*Cc6k$8-Ca|U)@sIv4oCTb!!KT7l z)x}sR-Zb!1I3g^OX?Ecadwog?+nz#lORo|^tcQ806-41caf{a0ti5#VvBouj=*@aU zo&&P~LG&5<#q1ZYvclG=tk)L`)+nwHc_FP03=(>}v&gbQNI#LBZ8iX)h_O#V>lR>U z8K(EkPae=cOm~xldnC~JUSuRB+&nlue4m;cBhhm59cdXD*qoRFLjIyhj~@pYE_^0m zb=!xWfBXvIO{0ph9T>_-Qj7&XXGB3CKG1fb4d0ZLGrMv7HurAv%SpjszkU&*+xxfN zvXght61mWAA8cWY@f>nOw!dF3^G}6CAiN9!?VMXVs_`6UU{fMV%L?dHklkf*EOpM( zt>8fh>+fqO>KbT{47oWrKIf1xY-%H0S92HIAzpbClJmaCn)T(&m&WB^BR+p-x~yz| z-Wp2dJV^}e9r}|((egvIgCf8y+MkSKKZNs^QcKQ(Q&YxU z>TK~tN}4Ybi{43gHwc&k6P=)#94T-28KPHg18skj@g1r_y&rg_P4$cR8hBLjd>BM0 zQp59Gp`;r}n{NTV^)n47sDo~=;8Q1?@ezAOmq9Z3Mder^;A}BaueNr9Ffe*CfP~H{ zwLe=NnJv0v+LS^6?xknB5bTMOpgP7={t@n$9>eAjS`oJzy~U6w#%|N4raQG{ zCo^7foE?(I;kabE#j~g_-~^b-{ieU_csQ}O{4u}>qVsN?G_iQtw~~{JY;&bpndB?fto=BY|GK40TDX|4@kr1`*I% z==a!IR%0U@-_((kk53)aWo%aLrS|jL+L^xp%STpJE8+zm9Jn^xbrcB79~u3J&D<=I zlk_R*ZIm^Ns1PHR^eG=)s7H8u!aPs%O&E-N_KpmA%^6UlIA zZRVzARY23h)ZyBYs;{r~!NI}1&z~b38)d)d=JHYEww8yUC-sHRe)+;t5;ksYiruW`IK(3Ujp&Kmykb z0@!#RYO6)(u*tHI;ZtJb^;aW&k}T}8?;e(BR#wuPROgxa+fdJQWgKitDER*hGU;lKZhhw~Z&Xej8mI05$=R}oD zflltGQacewc&a>jo8BX(P)zj5*zQRIw+}RAozaZ#Oy=|RvmxUy7D2&Kl&^&9l1II~ z2XG()-4s|tL+on839$3GP6Z-aj>SHI`V+c|}qS?xST8&?S``B#B2Uc8vPfHN?>E)E?310v$J zeipg4bhardSg`L(?pmE5cas#E6^aMF1k<(wGqbd_tZ0vEm*MJ3$t=g4)p|2Uvi~rz zw6wILjk5lyWytNHKb2Onf)E?KxVU)5yyU^9F`oQYCplRk0c?)KSS}Q*1sG8>H?yj% z86XZmFE1}>^RTpJD&(aB@H_M`Wvc(2bUFmxsfIyb>P#)Rvz+(dODRgvR|9bGklWW( zae0m4?KsTH`YdW~d`SVa&+Z$eEW{_M0F2kh1WPOB9f7Hk%Y{)1Q0r!ZXReI4aa*Dx z6UDJ>K!ab$u{H22;{aB_jQFCmMQ{l98g~-LQKODa$ZrI1g1z^y?>?$HpMz|5CDnET z_5wf+YmciP9j*v`D)wQO9)w2p1q51slJxZSIA+n;)})!x6^z)J7z!?cNWv@Mmjayu zLYAhi8va;Iix~FJFGwpzoRU?-v7-x!WfivQqWJptt9g4kJi;}us-LQ=D?3`}txA4Y(` zZf8Ck_1G{>4=SSjV3AcIs)=I%cl({QeO)?BD+?%15drDs4sDn!p?fL_K)c7-r02em z?`;4ehSa^7Abtk`!Fc=Mu3H#SI>j>Z(-4I?t(+yX*Q+>bRpz8J)?`^kYfQcYYIOskW{(wPsWz7 zUPTV1NLU=LkJNhaU$3_R^Ty|-D5!us8*|F9eAnNJOeKyj%C4l2sJy!5c5{%=;1V)k zLb+w_`p8-jEwqI!GHcLBN%{x-bKMKXcthj?tVfU;Vv!Wb0Ag*&RQ}MS5s%g9P%Z`- z8w$iaF)nOhSWJTZOZ%9_XRqX?8Ei^RBB18%Pv5D3ZK`ixpd`j(Ato^r;*EyE8%-ad$EP`+K%D|qfsw`A%Z((4|O3Iw3sc|ZGus*<4^hE zGYOrHQg*M25nx^MELd zpE6LQm?}E!*Zhc~sZY`F_W&Oq*#oPkfAYjG=v=#F(7tPP-@>viGg0W$dk|)_PF)jvN*p{cRB}qa$?01i z{sJpAb9{I^GQDY{(h$oxrnD<&Yv*4jY%O@v9dBinbuouKC`U^<*Ea`H1RG~WHZv=e zH2XaMx4vc3O-^Tfd=`Af;X^;%mC2t50KwU{E51c-24n@L`WC~}hI4KdwkSVZjlmh_ z*??h@IMqN|^}k*xbSSjUZs{<~&))NtYX3LF+$}jxxJj8?Q5-HV@7(qVFZf{VA8{D&NX7M@4`GmbTp@$ro4KE?c9vzj_}phzQ>!>*r`ZI7yDU`cKqhP;(m zG-EjDM^WDF`#Qi#0(j$d7kJZ*OgB=$_q+P!{uxu(tnlMdFY-f4hFN|Ji`~y(S1|Ci z{i4^XX@k&0_xAa$#r+JB4p^A^S!UCBd$Mxn8kD;|z)NdHgc!&e zvG=ri4xA_&0aJ({;6neI%lGkatl^Ox6ro{w>!h6G48<~`_YLl#+#x!hha!kA$)$2d z*%|uI4HcTo7`b4wsn8ObU90m1<51-nkCie`~ z$;in?$;ilRS>k@bYxA_5Kl*N)njbjVh-qZVmCz$7X2qo!&=})DbkGb(Ya!We(~8z! zqX2T)kFpYCrTDe_lLz88-XDz8Zv9P&&BVqpoo6zWOo5V~JH0ACHc)wu3`%*pA}ozpv-e$R9zNZknozpKk`I%WM;Xf*KSFk zABN+}228t9J73Rsde77J{hrT_>Q(9M`tC4)4+FOv4pKjKPf>x9fNcK;*n zBW>u|r%Gx>f?`sK>11!cu^E~JK#iO`mKTXl;J0@?XcD?xwBqNM4_0uUI_~>E;P5RK zey4CB`g(X;m%H`38`3SBmY$+Ayi5tIApi=nG&N*w-%zd-COgiXS z=We#12fu)>*@IkRc3Fe$l!*ifaxMeOq@=`oV7zOw#f1&55FaONLCylgkMsV9E0;LS zANPnF2Hs)NDOHG*Fi1&S$t79}Z&U6}AM)f0&^$^T%vkuCwt8IdD)F-+EX(A<4d0H= z7dB^io*|el@E+mQpN9T;kRKX98`SaDxO#Q_y3j3O z3UPX;a)I2VptSCS6*CqOJ;;87nu>&QNT)E8~6*?-pY;_$%))r|1@_`)P6gMEDE zQotELKYOUH9iU_*=f|JB+PF^l++mIADIw>&pC`%CP1n-EHgN zvRBjr$;rqlYNq)I)8)van?pVuzc<$^tcLJmDuPA_oBiQuhN)?>%*x@F)@hxTZUS~N zZ{6|nd;kD(oiOL^stIFcGv+`Y*4i9!kzGaI{Q~0D?l{gh%R#j5pDMeg4?axN?$*M? zl5=8WVv?R)pR1)5%rFAdv80YTmvO&X7hj#K^?Tn#>d&h)jlx@JYtr)Owpj7sPTHlN zHR`XYhopp4A|v<|6n$(+S3jv_H@Zu}<_CMc02`w)GyR>eg9F1_O*T>3ydF$@#*ZXZ zm_*;^EXxqKTCj^FATpmE<}z&Z6+^FmK6EZ}rg6LoOP+!t#Bkvz4}-Z!M|N~XUHjo? zAdcRiv5PB~WhgD+aq!uxTk9CkQWk#k^GfEzF_KNn_d zwG^-r-M?2);SSw3ApeX@O6TwVzNnGc{4`dhGv!l6b92d&J$KXn*ISxeN+0BwBv~j$U_;8Puwplxm0hzBJahr6=Yedm* z@ltG(x2V$9y3vc4z*C{#-T}RC2};(uJ;xWuHTT~y)L^Tb-xN-8)v^O`ro9wvA|Khw zFfpt2Noj9Db7FMJzt#u_;oTABzwZ!xJ^|N~Kl}RQ^#IES{#}9~lI1;CnCJG?H@;8e zP;j%|v-s7djF*bVBXBmrI_`;aP#m{C!|pPJ=R}K}PC({iG$YcCiz(0z{zGBd2CesDk(F%w@=X&OL;H-#7p(7 z9SYd4`xQ6n^~6f{tw@W`mh0IIv;cz6ODLq~6OGhAEL`_s4q;1rjGK2sz=ne!VI2DnRaf)}M*lRqp*E+J1O ztL&7<_dX!jUkCP-_31R|)V!crzkOz(H1$kC-=^2sozsJBRN)7Mv*<7E7U!@)9I4Q9MF~&!eX` z8AM$?RfT2-w2`xPxaE&U2@I>S_=hz;z2vtRn@GQ+xYvWiDdYln6v+ls)LrzCw<>rUs^AJEBx9?*&2HE4T{Af1E zw&*ioevY`qDT&21ItQGC4zy0cQ^L7QtnhVrY65S%5|&?shAJVhZZGUC@r9Sa0jm0A z`#v*bO#`M(qAK5?e(66iQ5xB$9NBr1X+j^AsdVGjG8fp{`kZiCoWcd|lL^eUD;j=& zD#F;czjU38n>rq66KPS{g4eq38J*%-Pnr>U&a-T3_}Oh~pKyPFUuiI+p!l)-Z_exW zv}eJeT2~BS6O+}^%GL%DTOMA{Pru@$h+pZ%bYTAhz}WM~Axf@C_oTFMWNg#TLJt_&S6Z%!LLN4t2#f9cI_NWeys z%=*|fR4BSMzz@5q(`wg{%G!?c_*sVV$}TCH0zL>^f7dhE3e>pxJB`YzCt2LHMRsv| zw!EG!mC-gZaLE7qwWENQnK?gTXZyIXw^zt{UJ=yCZ zuF)wMT~{-q08}#|7I7bq7o|U_p4rVWMyov*>eT zHOQZ?g>bf~;0CT!K=oZ#_l-HWR7SK@!f&PrhB3(-3Uc|GKYa1bJ*Gzn6X=iIt%4AJ z{tOq)2J=-;`XvLM6xh3#4uRe7y4-lt4$Osp&782H2VvRlaYaRN=O15X=L@FMIlR@m z3FmwsSk0zb43`Y6p@*(kfW`2WV1cMuV$D^&Va8VRd<24&Zud9K8^4%^R~*APuS$N& z6@)qES;b~G)8_GxKWq8=^}z!bl_@6zD7)`O3v_x$@5~eeVpnS7v%Y@4^8Wq%gJ;v2 zzWN|3V#vd2yy^6}RvYpdO#i2Vg8Mp6c}2zL2MF8$t-adQ)AK+1J3Bj#H<6v4QP2fC zl&6COKP*77wFxx=v6toL&+JHE!j&Q6zc=a%`C;#mmzgea+!+|;egguPz!%rg>kUz! z`;17ub#n72ltFEu^Y??V<1~Ne!xshPxS>=!z{S)ACV=V@PL`tw z`y)kQ3ANiUgn%xIa;EwP0hH*3p@A8Fv+0SSPOYYRC3YOI_Rf{gON%T-D8?VhDd(>K zbmDQETX=0?Rr6}QF(9INy4-VO&pI^B%fOg*k0KD7wk>A-kK?3IHaF^cO-!)%hvzX| zt^HY>D8G0-*sWuGwg{?^<6m;6K=~o5;Sqq~aw5x61FXjhs~PXCId4q4=~efhqlasn zM;kfhC{%tv;Kw@AwnjXVfSMPGN_Wf5B1X@jEOthB8(j-8mm{Fz;Mn=WYhr+nW*oRZ zM?gfOsHqv3h=Y#H3kwV5lJ0k=MPV>#)och8OZ%Er2U4?3hfZ@`p-Q;HEiDa9S?E=l zoJUZx_3~-OQ5jSOL zJyTzWERZ!jMs04wV9*u1_3`4A%Vvd&O=_yUvf5FlO++vfDyn}A6SvUsh{%eqUB%p7 zvZ-{K9{i_WdSFKcridICh};%aR0o>~PUE<;B;8czhQO9rvXrpMW`S{vW>#A-3R1mU zf?XtHHkbfvSPTxbz`-!&fJADlH^y%Wl-X?z87nlX09h_te2;CROCWO`7!LkMlK0Md z+=16=W{}XRmYl1S53DuU#MMQ%$c?G}(;ToaUk3FxGUIculq*Jz!!0w1*rw~rRqDfI zfSy-7Of8g~Wg!x6NFOLxODq|{*F82tZ`lb8(&pjOz-eaSwOc-#UUZ`Ao@cIg-{V&{ zPn!;&L>`=C=J-l)8_b}nK+8Qo1Jedxyrc08`KS9l=Dp+tbBy$4Pc|GP>CZN20m8J= zX&OEbiBi9a+0I;Dz2i#nycdH3qS;DgV^weF4igmHq%+Z#^)Hj2nO#YpoWca8Et$K+ zc{-x_d(WNR**TrtxmPK7hZ|mI6qIYAOl_&&$nfy-h0H}W3ckERZ|6aDO^Fd1><)IF z8x|zTq@Pt(L;<;@24)$rUJcd)xPrAbiQc;@<*v!96O^^)S^&LjB$v-gf^6tva2LJS;jt=BJ0>?9g=l0BgQahc`onw z=kt8O&vAU8pX`JXsm3i@3Edt zu7{ebH=h>sW6eyZe}#?UBy=BpfW?Tbil1aDR>yCW(p0&~6OQJgOg1vjJl_;!HsPwq zozpCV#2_;c*c9O$5Ag3lQ|qxQ3H;-CuOey zt`cj3-`Oi%`pGIRB8AK09cDz>zGo#5 zdwg5*_Opm0JQO;M<|aHZDby%`>zjGO)Uu-LhwZX$%|RL6+4jmY73rKN6x;oJXh|$Y z@ZIfC1s5u9#Xja%S$G2G&jW+COw^(?&fTp`Zg=yh%6S#2w)S1wXqZEH6$rP@t*B`rn5d8%fA8~UVwE$?zD^XQscT;xFj3OcbAc989c z%I=3%7*3YApPJv|r#zP6BGD6?y()Dr%~$>FoXW%YK?^Yq$NhTnO2{{r1?RzwSE}V8 z8~&`qD`KIC4A^fb{A49p5B~$zI{}qd-~;OSy{io;u^v>-K67+4Kqhin_}QJjc>Y5% zxB6)a? zENyZ^tZk#QoO^QR>p`}TZYwIc=Sa&Pc$8>DPH~5*D^FG<%3-Q@z)+$y>ebon=U2mC z*L|DU>ix*NRx335I5}B#>KpepS{%?HzWu8#(dV@>#oj(*GJC0J{8rSU#DLD{$R==$Px6>*cE6!P951n-nnp z@8C#S5-C6$aBgv^8 zc9cS!ao-8tyDzM<(A%OL3L)bok^7Cirl0k`ct42n&fsDFm0PB&9dp#Y=HD{v!e7%S zmgBgmX)bAKG{gL4L-ntKnCL0gFQ-UG6?D+gZ{Y3WGuFVheazI_`WbK(I;U-SbX>h| zZOywg4cgY$i5m*1txNUU>XR?{?7IM0Yrb80FO54T^hp|jkMg&gI-)Y@lA(AzbR2nu zozsXCdlXZ3A@Wh?*`*=BK{2(1A3pHT3xB}EfD@^77IEQ%)s8d`R_4_-Eoi)00f=xS z8^mk<0~Vv`eN{viWEw+tVM*82^rZ#1uFig^vASj?jTStez$br+g=~7>jSz`E-(%XI ztwr8)xP@Rj?hs-hTwIRr)}J3e(yd+?EB53__6FYh{#KWg#ioA?qCZ%11^j|Ay!ALBo6 z@{c@tBjdomlY?d~Fb{WjfBwin$Hu05VOL+V zfKeIeG^|_PX%m) zISA;}l(x#`#4TsOhN!N`XYarBkvJ@J_C8OA;G&Q&-S%#))*YNCYsENSi-rnA&oJBjui~ZSy%K$(evNVb{ zabsK31Tph#E7hCXpV>nCYN>a&{>;2n^OG6#P`#F-mg&yFNtZ85V->T)#v!4)R5kO6 zE-~FaBRh67*=G8?BSOE4IUO`uj46H^xC(zivdEh63JP3~W;M0NTiv8EtwY{W1K8?& z9-W(UJOY;4yb#=Dd_@2f2?srXLK-G6u)FgkCGWSplx%bOZxL0yTom!~vYv#E5$s#LbN3uN)|0@@XoOFBc2K>mqp*#a-Ax2d^% z)Axzh;^zmN?4CYT*iW)-<$$3oIPaVKZaf^_fNc>Qj_g%Ew$$L@FMA92@F+^C!vCkv z8TRB_CX}HYrLpruDuVU9x({owSlxLdQYWwBYLwG*3qf^LtJ}x6Ngo(qLaYO8U5xzm z=T7&7`rqD&J$mw_{yK>OkNy2yyKc97BrO)3(Jn~2_}plKzE&^`ktsjvrVV#|_%2e9O^GiJc6&$mT?Df4 z#cl&DJ0Y!vk8J8iqTA4_!o<}-OdEu`CHyQ_eM`5g%?-sk%lowXRjEI>nTY+#(L<|8U-H zaUF*Ez5=WXU;qbX(jK>8VC(+fnkD+&)rkM@FU`>)VveToXGln^TJ^}h@Gc3FBO{&; zm*Z2vtJ>)bTP8cHLJo9ap7^7sdYjA2T$NHUTvz+T3Xaa6vb+&A_!evNvLVgZ%Z84d zrQ#@=d&A;o6#`alXB>9_mxA`g&r=`UXUr@Ho0yhXH=*|zOutvN)>_H=&U`D#aNL*mne`P1LO&r-u^c&)xay0-v3NT>lGBK9)>@9^zFy1 zyF0Xidk0C)3 zB3jO^;qIrgRM(-uwhKwn7Swp4W=y<>p{c} zP-G1e)bnyEVxD{_GMp}%isbeZKqGi|Xy^u{dcs}-!%L^{C3gt>d z7(IX`JbCiRH2tEk?sW$TdD9!dPoZ(|8V;xIs;Uv*@al$rITlc1^IH@bupZmr6M}uU z1lrJbb90VlE%$MxogH5w=dUxDBMAvaR+rA=Hc9Nf(ZIk!#diV6XiC*Uq-pH|+d3h# zF>NPsamF$*mmkNjcx!{d4qHDKZs_N};O$2{!cl58ZG_9))%U zQX?aySMT31{H%lOXQ0lnQ%H{ZnB3CR(qRihwYh&pWpudJ$kR|<;SHqUCf_@DpLa;| z8N&WawIyVc4< zktUix%8}?SoYng?Iy{WhGFo^7g8KiGu55#Sa8g4Bw+OI@p%sjlM# z9)8u!0lAj7BNvBqo${>%G|${=e^w>Xo-HGNeUFlK@8kUk4qV)|hf0cV)!e#!ZtC5( zV$<)fiUQl$TOBW{+dhOnuY)>M(9fP*P<}mEc+WZ*F~^^TRH$>KCW_oA)0%&5ih`({YAczphKt6^bH85?76n2WJp_>H#(k4_0Sf0uEF z7;%rf3GfJxK+5h$_I{N74?eMqv%W!~oAK#Wy`fZ%=@2HPfi_OCc9qF-EzOefWvZiN zkoUv_RJh`3P(<2aEh$eb@o76@qx&zw-bn%77QEbiaF zlC}jmoc`;Z{QK1|7MFH$Fh}amJ;(0G1gPANnMr!s47D9J(YSp_0MqnJc-tkp$^(QxUU}GaeE7xu8I9&ED1Z7V1x6xv&PlVub5n z)ZF{lmY4-w;n)&DrS}XSuJJALoxoeR-ruRtB;z#AgD47ogMrCD?C073K3?iWAm+76 zesg#2$kqd2Kfm{3ma=KlK7JZq{guIWb8U2KzANVcv}NnMdi!=pKtV)WSy@>#bm3js z_tomL!;I_wMED=4QF9Ua{ULSa2T3M3b@vr>8UqRQNcc3{v!8|S`Mt(rn$ z&-o0DYWQLa^v!Dj{8a}$9zXO#NbylhxE@S6|Hw>)eE8ue+IXz!*;cDly{V3iU3=rN z)wy52rRj_CuGcsFgEsti4A=4>R3)NWLdv(kb0=WH;k>Uc@Pxqmu9FBZL_}dQ~ zAMJMjrK2}j&LD+ssu|7+hRt_fhL7Vp2RUL{y4$PpBl}VnW`9$k-3llDF0O52xDeNHM=_SYQZ2Q9(Y+W^O% z51`7sEeX$$pbgF`Y>Gcw%B-lk83*FHXFeqWaQkrsupp)!i`7v3>^AnKO9~m}=jVrM zvA?*-fS%v)IJ@x_ZP3nz^A`RtfR9-gtf3V8(Skhj4^qlR@dKKjI0 zkM5)N090k$@B7iFj>K2wVhN7Pn}g6&IdL1JuegMhCH@&$gQ>|;`6v66TUZ&4O_XuP zyhq7g%J!WNy5pCj*aY#eW|u-Xc{&Qe8IF<-dN8jtbTrW2-F+UBmM9!8rfx~0P|Wbf z06#f*5X7asF>l=Xw5QHdJ}`C5)7V&o;y~7TeSE2s!oL_J{rCVlKXUx58^f#j`1b+qfe8L;%h=3&#s}uQ4k{<{;ZRZ56TT- zx;qqvd!kbhy4}%W$*+s63qRkY4#Y-nA%wf>32)xKd-Q0RLGKz&V7^Lyv9ZOD6Nl+( zM4>gloIP(10}cV1lP9|&P<=kPdZ85-)iN46$+Ul@#>y2mSqNatLL5E?sxC8BM4DMWkV(x2e?1H=o98G!mq?2T>3DCp6JC z(a~zB*u(Nxzw%~vVVZZ_+S|*Vdye6`ih>-Q*DLYrsM>pjQ0+$IO2u@H4xDv!2rDcs zTnfyXU$AGaOMh4l7lpYdBqUUyp>G9$r2n3HiCqpn`Pf~(U`4~E)$C-l`}|vshCjIl zF-Sp6I%VoZOY@rD-J0YSyCO=6-)j-cP{~f0VZ6O&yRGS2YX{aaNkc?SFS46ZJ0r8E zWA~alJ<|z=YcY!pP!?j&7RzC}1$FdOTj>R-=#{vHMup)n*Jj$P>L7&?`D+?Sa5$5% z5~p;pH-8Gx+J6759>a>sgWp|trYx_f)5t?FzKe!5v@6H0Pbl{(2X(3#^u}JD78=l6 zW(%3i?2P+VUJi=JswVb-^W&KS`$KcgvN3@O5s5Rnol7$_vt;9orDU796Z$ms>#uH@ zJKA!Ys?h5?Hq6bB8-zBe1IBIz1H3=9nJ_4STBi42oIPow$AU*3wgwl%7-gKL{mOd2 zz7g#)hd4){*v$CZh090G<#)dm9T!^!?Sx@#4%csda+0+BrCz7g``sJCDnvu6t3w_y zR`IwL)>x`wql$ho;~IWo(qWk?VkEEqQrxL=tDhCv&*AcVn&qsIk_h4>j6St zXmuYg@ul!c@ZIemt*F-nC1;+LG2TgymKkc(+JV~gWSUp<$wm~eJl1NB>8w(SQy`Ov3E`i# zY44Ot3!aQ(PWZx567j<3y9CE)@j0gq`((?Mt8`p~kzzDZWUq84%Wk`ruv-!2Z2*RU zVRiq!bBc;(%a3NsElHfpS=%$$tO94S(8UI%p=%D{KyTs_g{?WoXE5P*2zS~IBI+}mNc2KJ zqR)6lnCq}TmvBSaJ)V!HSOc^M1P(Mcp zuCBe@f8^|H1D~Ce=^6-|HQlr`A3tf(*3oJ<{N@8Y@&xQYL!t8h;`u~j{xrQ8M>5Kf zyChoL3%{oM@r|o>pDru&gT6di47!G{2wpv8u0qiOCG*-PH-@_N*Z#!$7D*Y1>6t5^ zQ0;SJ)S@>|f(ZA@pdg0U(z4w5uS{(d46Lj?r>snw{JQJGUz&y2dFgy96^J-jM zR5se$(0O20ueV?Gj8y5l5sK^l%|YzcnqKe4hLUBci>~uck-Zz3g2g#$>R{;<6+BpA zvS2YcU}lw*^P@7g@nUCfk*VOJ7yMDh%=p%)mIN+*gyYwpiW#u^wZ1!D246PY?kVtu zF<*{Zz*L|RtW7%D7rV#y?roB-x1;Re+T8AmJ0Q-A>Ym0?R#xI&)#%sKVrf-~D|}Jh zuMr_wcwE2lrWn{ASF}^NYpc=sHrIZL+fo&#K2%5NAGAVzRYd}Vv~qEmG0GpPTU3kB z9CWp`PI?v}e8qwEVuOteypf9suL>MKY}lI);dpN$;e$g%QRNflLZvkgbK>ZMhVQ)k zA`j>Eg%8ebaKu?lR*vv~$I;MHpI&Ls$x^s_<3`WuPXuo5DO^ZQiXA0BkBz{v=M)wq zeXhUye5#ap?7QVj=2qI8<@K~s++K(E7m(2*(c`VHd&HCj z#26nx>0bHuvxCGb17nzIfEsJ4j-E}XtA@yz9{3E*uZobvr{81UGM+AEY$F*Df#Bve z%`C86D=IupV?9fa?{bvfDq)WEGU!Gb`Bt|5STtrE35{+!khZr1DrvOngfwzhD1x;X zf?zQ%CJSgq?CaV&xw$DGO$w$En;fO!o4*|)l3+$skz^`()$+X<=hm=h0P=SqtLPa% zV!K1%NoJoqMOb63^4zW=5!B%M@yMovI&m!xiwna-t|-({(e0-G3CyLYzAN(-Rz6P+ zGwgn!lg7Ccvt)`V<=3gt`DL;pnxzNE%!7lgtog+(o#qs3OUfp!AjXdYJN8eEu=KL+e-*>QuiTKIv9u;WpOE>nuN$O+{6<^v{ro&YdQwgxpw1 z3j!RYw^BL&Gx*Z7o^EWbzf}42oo+VxnD80GhkHfn$yLZ1!8FR)U!L)q<#208(5~Rr zYY)FFzLuT6Tbeg0d}Ocsx!*COvE>{r;-}aS1s3FxR<(6Gfm%6E*^;-dsUItv<*-8= zWf{&X%Vax;#SG<{&(LgZ$t6?48;N_@+l+|Ua-&N4>%;GG6eXCMe~iop@|{)4(z_D2 zyxiROnm38U_ESr+2KUW@52h!V?ubMVY2ts9Z5H|J-8aS7lT1fcr%D|s#tuFl-XBuL zaTWqeEn`1l;X|&8|G7HOi(PXdJLkmdMHX!9l2@8j+wW(4L?mtD(LWSb=x>8LJVh|o z`|3Ulg(Bl#T|8RBS1%Qz>xpDPzXq?;>YsJsjVR=Z=uk=a7h)Tw^;`@@kKGGp?Pc4M zzCnTx-MNF5Uxg%6`#rXa!I4bo(U1-tw7zTl9KDRPm-mY6)fN4+@^XKqg}A<)CIX8F z3830q4GkwsheO#&xrI4x9Il#&LNy+pW%cg8YU%&X(6D8PC2|WVSs;g&LgfEA%f7H> zEub_85JG}br0BOaWLl1M?u!(U+P|DACijc57rkoB+FYKOxBXll6!EfP-Q|MNvWJFj za+5!UzIG_aUnUfj=I<(!Iu8oHbM7!UMTj)%*YmNg;=@9_jaDu?tq1>Q@C;-1G{V<&C-ZVwC+>)x}QOY$v$V zHDoC4(?Zzv1TocVy|$auhJP&AG`;^`OqXS8{LrAbY{|i=3e9V%5;G)HaLp&iHhSgU z6ZlE6h3yD3s$jH|>k>in|y1(hOA zO4)X;n%D#We2wQ8o9=E7{#$oT+~zRR!o#2ARvp(HwpZXs92u8R4}x*J46XWh74thf z+JS+r##N{jZblUs7eMF2#~qSWPi5HsBBHGyRDZIP?5%}5@`ADz`5jvWL14-@lVfa{(kRV zHf<14a)asM^O{?o4YURKwPFJdG3L7m#FSSIor8?4(RoijhymZJAp|76zVfexivZ#N|RWSlkb5%yKj1NpI~oj%Gas1^~ZE44AJ zNZl*)h(=`tYFgUX_A$s$wR)J=_$*HC=oOU>AQ^K&deykf!^lKAB6Sytuc z%Oet4^vjP3{Myy-(X?;6?mOli?O*M}@h)|LW(r+L%iR;TLaXXn;SiG8pt!v^qT=Rd z--0iNg+po2p4~;>j$O55W`Frn$Nsrbe94duqpnYTeSy8x7lC6QZd%MAs)v5ar+^lE`nPe7P2%WZ5C3it>JA+EuZyAoP5J+;V(7nr zMKi-Z5sR$WX_dgtCH85W=!^6W@;xK`sxsnUd@%I)0o<598cXDzPfkF+w)^d*TjeOe}f)Am$Nd>R3 z4p@8592h=(?&Nbkj5BOtAg+1c9@ch%^p|;F&=e7}&`j{ZYCDW|u=ZLzz?dWHD$_Mj zuZk<^M5IS-rDnUI9VvE<`fQxkOsCp1J;wdx6B5*Ot5G;$r|`Eclelr*a!uYqY6khZ zrN(tTHw-bc&yu0YTaTNZ5jF@WB`ze^+)t8R(EF^=t#h*?P$vyVL)u%b-d$`7raRg> z2ty-l2wXiT|>-Q|M2c>O|nj z!91&vfEcn%OK*Tn$4&nP3gZ|ugIlbwC5MSZjyv)iwy&4rL$7jX-pk1y%T%?;H1=Dp z^h&>l+Jj&?JHObi2^0JNrC~Tf97<9|f8H9I(>korxKQGhc>Uv*jcgqGmsjxgjC6;C zOn^)Fw0NqOUu-2w1nWYW2%szuR*_e83u#|21QuN=lF)b?Mg&uSYo&@<@Pin(zE;lx zd-wJ0xh+H64m|T-2!TX{7pb|5-K!Fp zUOZh}b)b&W>YLRkev;AK%gTwYHJ9LNQotAb)UnHZzjOD2tdLR$=AVrf;?`SiJ~`Zw zBn}#(V{5CY?eG)$_@$)>uhY^BBO|#Oqc(l(;q3v=P0uVjg){(ZB=N~wmla;7{c-D) zv^a%8IHmed&WCVveO~Siea-cpmZL|i zGx$E8l@m<5R$De@VO|@MRj{2Tug01{GgT2vvMXpq&WP!z7Q?o}v#}GQeL@3>WzBlT z?935^#1Bf)z~G?svtF7gtWmJWRuR~(#*1dd$t}Ny1b16Pe_rgpnl|EA9-(`C=#C~Z zl*#igZ(*m1a9p)6YYoTBL0|&((x!F#3(?femod972pea+S2a_sk>S+9)Z#KnFJ@+D zX57UL>eqYijc}EHSZs9x4zLnCpHAheSU|)Ory1dEZnvzgEaj(T>_Tyi`17hW&)aF` z9{28LigCXvJ0Tt zyjsrjx3YTw_O#UbMDVB3_%#5#Qucb}=?Qt0y4efZmD#+ziRr=v#Nx(|Ko|{{| z`OB=8f&%U4`bfeB&LEnzd;WdWShkU@%o}iH5cPhZ4=0#L5-R)y-R?xxSxx`>HW0+C+VW!o-W0r6{&0z4~Sb|8x z06IWs1e#gHZDsVW#vaBPndwXg=2wui6?32w_P}DZri{6|#ctj&rwq-D%}l69DX-)M zEAKz+Rl4i~ObdKah|B0-_oCZ;nQU*AW%|I?E3GnjgwEsi?}h`?9yQtt5M84)F}1KA zfl1Z!n&u3PhHAQ490!|;=4pwjw-aaGl5?REBh)+Pm7N0dcW1RutdU?=h(8pUwwq9` zVd1C<|Lt&7>dN!QpR5?ct-tQ_U_PvMf~u0L4L3cJaEUG)K+l_ymIcR(g@Rwda=TaRD1*5&^2|9Ly;U#tS|& z>Hl*5c*;O*8L+_#T;dUzqQ?lP9uf}!dQO!9y_(9EER=q+@rdW4$-Rhx`lA(3Z5b;f zBGMlQtZReIly+Yvlk7-BkQ60y0;94IX@+Nrx-M9G$r^}>iCvGazRNL}lOv<7r1T{x z$1p)7G1ExAllN2ICr?cXrt&htCGbk(S0C?EJ+qN7rvaJvdlgxr4_WV7QDc)6cer!z z+&M`DF>afgOqlt|m+p!He_vMSNH93*YRD^QD4b77M3`q_&G1 zrnQIc(3UCIwILOj@^Crx;OeUj%c0Fp0uZ0g(8g+>+PFYWJsnoN6}u0I9P^rcOJYt+ z+gO4#=&i&>a#$mZcvY9&H?r&A)GyA@{foT_UHs?tQ}>?>M|HD%<7N3^V5cjNcH zFNpaP80D|J)6ev>i;DEi%8sx9C>S5{%QGFC=*<>b<2RB&qhw8gmLzU(?QC5aa5J8$ zHy@EEkaN1s5*u&4xR7~eJ12>9TslJcu$=v^I>?(5r5wssnEA}Qj+3)apH?Og{KQ14 z#bADJZMG2Ua2xN;`|{^Me_tTRuV>&2?Sh-~8l6(dYfxv2a<#VyE1Xv33N@L7_?=!V z3x=5m%+Pe;51_rZm-btNq`M_AaHf>$Q(c%JcZVH;(qfOvcZU#Ivp(U z&0@}JmNnLDFxLC7A?tx-4ozL@EXPK}5zOvF48725!yie>6ddUHHT|eZg+2`T`*sK5 z8k~S_%o>FINrqC?ar2O(9RJ^E&aXb9Fs#+`ZJf8y=j8^3oX>r{Qt?kgO&%Mp#{lrE zeh?36EnsS0hZWSW{y8{7&qWAP1Rp>qa^;Vo?!z7T*x2FTwp{gDG(S78ZcI-(#;aDU zRYV@~s`RdbGt>PiTtR*h@fAW~p&T|e{|fuuxAmiyCX|a3@f$Yr9vB|ZPQLD5wfsw1 z^H0{X&`upj|5Uc?1Lqq6M)=kw_oZa5r}@11Rw?gJwX%wmj4EPChtl0ftQIU?6cnh{ zSpy=2lmSTD*AEiWCHIT{=y62I z6XfI+DB$npl=a~J^0R!LUd9^qWl~PR3hV7f^LFT ze3G)cP3hR_0OocotHv@Yx8rbU|E~meqZ5RhBWTS#fyf)a6U--Gn{#EZtrH& zCzMw8b+gFS;W8T-%B`C-?r>XYc&uMjB5ZxLGczL{>#S3eHkRlYtl^mI5!kiN+Yy+; zBA(+X7Rrgrxr8Y#L*53X7xE8{khryP2xMPS6O7q{jR^F`af-;Iu>IV(%KERU3> z@?}U37g=pop)5*YGwGC2G^QOIzZcq$SFP5ltuq>oUg=mdiZ(v~rt5U*FP`XU-T$^F@0Izw{+korcD1 zZ$)9QD;NW>Iv~_;K*WG(^WG~uxdKh_8g&=eCJzWopw`gHs4q);r8|^3mVb%b8@2Gc z6D6xyX^N~HJz>zckYjFS`1C%#QWqxZcOloEINCkD!V29a-_BCzzB3ZL*e4*+c2%zb z=X7fv@`Fi@L%<&>@UZwIv_(5}N~-E>+ZU~DUH9>_VDFry?$$ym-QNa3)AfX?GeB~y zeA`mQyqZ<^ae>b^d~5pn4g`m#4LC^c>a0x({peRe>Kr> zWV>Hwrw%Wwm1oz&>lgoMYYqFg-+Dacyl(U|@-dzg*r}#m?vRlLbNX_+Y%mD6dY+{U z?=o%LKB06%-QEZMaG{%;eaSUGk_hN?oV>-oqez3jJ_2c5XjO6rFxTF;c!q<3Nh$3W zkb5Cn*{0A<>cxOo+z18)eNSoDGh`?2`pabNO};UB$@a#^+)Z%lD#9(GZdIC`Vfjnz zJSMyXae+z8K?YM26RxgmU&6VQ!abxt0g3QIyKe*hgaRMVWB^3v00n*$$MbvC!%A5I(UvMhsx! zlmOd{V0xuiPmWfhb#hm15;C(2M>9ahjxhV-!$koBft;Ki-n;O15L#gYQtT4nzIn4l zV5trJ|Fd46&I_FeI8uxs^ zbH%7xH`?Jpd}-9`Mblz4%JIJWb$X$iYmH#qHb{kgX7IC%$zp5xkaJ(DbeSBg*gj;% zq-t?~lC==!P}2p1Qwh|V)@^g;pQCB|y^45`3F_}{^QP&PDjGEmfW*qd@CP#m2Hghp zgvjNW@=?^$y47Y8KVm*MQrDAZKQA}TfQH;R-I4Xx_F<@|<*-H&(nGzUW~h%*p}=cM zxjA2cicmJ5J*y2S*A=Se;=K9}*EP;!YZh0(}$;uHkBt=5(}zp!tC!_ z1I!E;dNkHNU(95%z%ExXb$dA-&&u9iC)f1Te2h4oHH$dT@s3|}h zx~e$eVnahiUkG%pv<{oV{C#D@A#)Tiu3Cq+TGM-H4A%M5&2o*=yA4vhebSClj^J^e%TCI-CAtByZ%ZJ(+7vS zbcWKysw&UK#HMajj%V2s6ld23^MKl*v?Je@L9fQYCggLE-Z{+FToMp6aIKmv87X&9 zN)4J7lCC{%SJe-KH0(a&DDb#L`jaBYgI}($#mhq$z~b7szR*Wu!0G7pX*|8fpUKWL zbR25%(HNwnX$x7=rtTVyuP!`^K zeg67XzG-42zw39Ww>bsg3ATd?7q{I^lF!?x-8_Fr^pU)ut&apgud3yzIA*(z-{QuS z#fKHfGS-i1sR)LYY}Yu&l@B`sNWMw7R~pvG3OAi_z@uSw4WLT(kj#mHTet%tm0Pn}Hp5QJoOzC5ya{@~r8 z!h&~dcWLl*RxN7u8d!b`YN`mBE{~X#EkNr2r z5ZnK+=KsfAL;u@XG<@pEQGcO*?Zu1LJL6Z_vDbBawX{g;IhD7`tP_lx}E!qi$T<^ef5by!3@WKFTeLIabNLtW|jgVru*5gy}Nvr)~1 zRjjO}#+K31i|kK`5_H*ArxQlOCT729s2n^Kzw+yt7QL#E3Q2_`zqgDs$U)$PnZ$;O zZYC{NTIk>dhH3qSZ5}v3;0sR#*&d+01u&z~!y$Ox=d7&U+FCnc$0);A^E`62BM@3Z zcujn2s<_tR#6-dRy6^H>rQ%CcShjhVuuUH!T#O^33=Yw~6odZU?M%L)81eu}i^0I{ zvum%zbUx;#<~K*i%~&Xp$UO{Z0iUSc{z62x0KfO4v9a+87UdveQva)Xry2Ag?KB2s zDVr@-|7+*}R9ICf=_l&4ESUH?`iF4b6#Dng3h}6hf&gpT`Yb$dVl$isXSEY@gGpVU zn|5IEQdym_=-mBdaEu@@lcF$JWW*5`X{@=lD2}a#wL(>$JgziR$V;d+Fxx@PVnjR~ z7#+Lka4vl()&`R=1k3)3j27Xr+A|?de=CXaTQcPlzsl&&2{5Q_SOflmUAY8v{H4JJ zN%yfY!yL?9#e|d;caRsK_MrN96B6QC#u09D0dFjcq|3|r`d8&IT8g{{*H>N*Kvy?d z=DE*sDFS{20nkg?9`=34K=S8>>Og4s5&r{daA9U+V}p~ z=U~Jp1>$jWaAB=1jUGu#TB;dzm{V~L@vglBm5VTBH2o0)1}WIh0?qxoD!(q8&7En} z&qm&!(3vaaUDL{4e{}KGhsW{jh z71xBgwb8}5)%S; zm^$VRzVoy=f^rr2+u(Ap1+ZXa=<-k@p0$Qg8HirDzZL%r$3&}s`;0lgXxO`S!RJF% zp3kg)*4EG=r|<8`yyWytHd{XIbih3?cNC3+p3eYr%D^4ts9G@XG4lE7ih%Zpf3wc`+Ypc^nbfEkz!Qb{{5GD zn48nF#Mva2za5v?vn_b=12$QM9pNU7gImdOv0u9pV2C<8I>^Q8jdNj(MrI)6v7ynp zCesS|te;9Q)Q53|+CS!T-M7>4cnQ$Yf^D((tHBaeg*c2oNT2=hj=h`_c2()!p$rkZ z_+Hc$G#{OvFAy~2X^M1J5E{njoq~eVo>zTsmuxZjZF>HP=iE;rS$vzd>mM` zBR}h@jeF&nsAGQ^RD!DRsojX4n-zzwNDo>VZ?M{{g-j2WTQ37^ zH!l6MoQj_A#NJOaIG*Lo9D})+rvZoy3ex)XmCh)ZKF>8OgIB*@j|P7A#JTsze}xs6 zftA?FA3^R~9A(ouw`sqEdrfqA4q@MvA>0;uTs^|yjH9WI9F|}X{E$OBjM84&4grAW z*Yt+(mXbXij2KI#_xAmFfTxR-*-NssPd%xfn=Z%f*Zfw6@$xDbQulv=o2Eb%N=`w6 zzZP@V+JTpWm=6~D1bAGcvwXcl!wVhI4kS@o2&l=-lq%Zc=3%qAj~{hMv8aF%-JqaK z10$p7!6IvTx*}_ZsL1MolsXV=Y4dBb-@HfIE5_Zn1z}?gFdVi9D5_YsrINHQA4I8H z?^TgU5Uqe)Dq`aVB+V9eP#PV6c?eZMA9O$d;%(F?>}pdC`ww6os#W^CUta(H(ZHg8iYiSy|x!Ypy2JOd>A3P3-kWKQ-R2E3z zORfPw*mhxW1BelGwYEXCXi}CY{_j|I0Er!aDEPpN_vt05VwA0(@_P9-<+cI~ygZO( zKO_X!gAeNMeh*2;nDf^gwH3~a&g6_R zWe}qJr?2mFko|HtIDYQ^J8r_Okm&>ej_!Eq({hT$ZePZ*z{4Mn=IcqiUzkGpx*1WR zi4@K4n5bQzjVQ^yRL_7)lz{(l_kuI3%|3O#3}4FnC6LE|=Xj`ZkmWO%vs@Sqo)>or z!_iR)ZTYmD{J|%0(Gn2YF~M&KF^n~BuFd>MfUV>Q|T?k6#OEokqdzfZxRE~%`t zU84WGdg#N+4*e?<=l>H};QsYZKX3g#Gto!dxG-G zbd$C*TJ75^72caBxv-24FbM9o^=@@QOXrdd@4~1tNq1(;mGt8*Go9w&Gc3a7GHnx) zciv**Zx0D`Buv9QI}g^9!OsKQ-`?eLMc4#Hz)X;?#=0=lTW)PsEO|1FxA{52y1aon z43;cNsRxew%0{5R9e#afZ(9Cy@k$fE=ux0eQ}+cQDe<1cUd4D+_9ALELQa3JBkm8G zX+ymyj5FSS&bt3Nw$t6Edm|R>#z?HGzevsulDa>kylufugBC)YZ>>V(xmd!)%w2lE zjr@8?EWzdj-o#!^%b$dwU7WC)=x?KrM-^f1=lM4IL@tFIRF$0W2QfDjj{f^>H*Vv{ z9gO07(af0X2D^r2){@uo3Ac5gd-wUwZHU*)RK)fuJ&aDEVRSamzM~B9`e#TbtNQrs zajbyjP)ExgbTw|Bxq+257`1VgGH?euGFK{F>^5onsL=MiD@;|s8!TCz#xIRdD=>Z! z*tDqAEs_SgsT#s{;{|Q@@#0nZ;mBV`Ylc@#3uO)3S;6nhvHdv|sB7qQ>{wR*C{|qz zsGfnB;@06L`5p|a>`%vmP**e5kri*LuTVasChMZp8w!1?N*na@#N zK_|Rxj&l|t2)Vs=^Ywe>(;>C_lrQ$f_Hbu5JJZC2b@s^N1103)NV3`4qZPP1+{XJs z>3?Y(Pgg#%Z`MwKK60wGcNkuGW!gdL3}4r?2h{^laQ=723`YEyJU7>7mZP{Kcbfwu z+S{Gg_i>WhJMUcX7}YdY+OL`}o+mKH6hG!>Y|_aSMX-T~<`HmW9Tp4i(&!WISeI*V zNY-{ z3u$wM^lo$V|5BtNwo5*}Y-8{`=Fx?DW9jWj3F7dLH-~t$xsS79(RLMGz~!L^kfC1{geEiyhohZ>PJ~vJW-`A~(O9d*3o5=Wv?|P=r}|E!leb7m8CmW*J_6o~2(IRGV8bLd8~`78nekfA{rDY&ZChG7>&Y z2{m=87MFi(L^*Ggdv-A$}ElS7-Zz>TJHT-l0nQf3f3hN7)jtY3l!v zm3~#5@Nc~|*W&i?_g*Ay{oMKLckJ6mH#A=f@38;Xp;G?Wq|~F@-|+VBApPF=`<;(P zT3!+SHDSpX5l!8#|7)%KJY|`4x*x4-H#vVd>vizQdUJ{Q*_UlEC*GOAKRz$6@7n&L zdcl2mK(}q(`i_6eHv1P}+YbQUG3VM`TfN&i8f=X+zV*9@l}*V%=XmK>iOcVQH6HI* z2YwdwdsF-`aAHviu2iR!G+FNMHU}Z3aV|+V20~f8Un+eYfo4mzd|j z8>XlB8JHz}TmS8w{OzmHzV#NIHgccAUBCQ!+j{qX5&|x@zbjKX{{7o_?DD$v(7l=p z7gdk$Vq|#Uw&tR8NVw!*f5ul@(M)%n4!7OY3ysi*TGaw{F!y`bcV3atI3Cx3uJ`@_>b1h5 z_ZeHIzHeUv%-}|w+cNL`yjdI80jZf9fEQ29S$6aBre2lYTjeJ{*T38KuC%!O@c+oI zTjhA)v%jl%KK1t4w}o{lcu! zRd^mHIgLyY<~-!D-yc1@&&3wHA2ovI0mC^fCoV+)8;k@|rc{#f!~Uc_)!WSQ_BB_5DJ NJzf1=);T3K0RUIDtnmN< diff --git a/icons/mob/clothing/head_muzzled.dmi b/icons/mob/clothing/head_muzzled.dmi index 62c1ebea0ac989fea96b4764840769557650e66c..0c72221833495e272ddd02f7931a9e6c36bcc869 100644 GIT binary patch delta 30842 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 RSONrI4^%Xj%M>kw{~G`%R8s%| diff --git a/icons/mob/clothing/taur_canine.dmi b/icons/mob/clothing/taur_canine.dmi index 24cf51d2e5da02ac0965a0cc5743e6fa15621146..6155a274f2f2579c2e5d121a0fc6bd066097f14b 100644 GIT binary patch literal 138694 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

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

CW#n9>1cxFLrb! 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%0A63buDZU`I;Dh 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%0DN6R7 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 delta 66515 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 z z*-cuT)=!Iqjo6eLi0oZ6Z1p zAOcMFdD>Ep7)pgujhj(<`(VWb0W5@$k;Lmy6KSC<9#Ag`A~)qe(R0>XG3F zQO@~t%u>Y|SYZT|&-0u+qmXE?%lzwfWsP%?zaNaCo4ks;Zivc#VdE z2z$WEA)+-8wLq_-6Y@T6`r)AOwcpgi(l!+SleEvj%Ts3jagY=FP?(UN2>#LnZvWgl za_scM%|NFKzjCN4`crF##`xEw@%r0wnPORk6%-=eHI=NH6nWZEfW z=DND+1~k%=hpGQ#q}v>DmzHMr#(CZ;fAwTglZ@3INgdEPIl6-TjEkBWA2(QmYqihU zk^c_-;h*mr2rm3$@ZT>@Mb!T-H>XdGBmD1Ac7;L#hX4GU`jlP?Ap7S*)WjDN@+Ktr z|NG$R6%e6*y((Qj{~GNEmbcx(LnhJ>DW`pWJU&<%hS+j%t&{0x9iOz(vL$J$RIhqu zR0fIZD?K0sFPejb=iU}j-9x3IZA^U7^>K{?S>4&^Xw&fxsbeyHY}WxQotM4Ae8>G| zi&&g~XfbsYM@V=*9B_n&5?yOEgl7=H-G#z_&f9$S1gCM&1awsbSa7)?Pu`>XsT` z=%pB+pg=~TJot}@Nm!S99BZT2Sa;%B)}^;#+nKrY44varuX{cjf^s!s1fbj#SbtG1 zE40l%0T?0){QUgN2Y8jbWlTN(m zM*ZXUAfNpL+1JhoVo$$Ic{iMl-ZyyE^|vEnC3!wwUJ(>jd(H@H>y-<_J_UtJDz{bb&2 z#2GZZxKJE4D*Ob1SCkk_6d;|Ip_WA>nLw|m6m8oSR*K#;Ywr z2h_*_ntjT*wVgmWx0@e6d@z?xv10*KdemYLtPx~J3<^1bh0{upwZxi(IA0|PkZNM? zTfeh@ZYF($sJZS|?J2le-f-EXy7Spo=%oB88^aL=%wk7xYYHvs!|k}N^>}$~-Y-!! zmB-qUqlPav+=8qxh0I7{|4t%+Wj)#Li-g&L1hQe~&p>JVFrLCB7&LRb{@OUTwlObj zp$a7tl@d_+3)X%LZ3WZL>TpG!$Q>nF;o8o*-g#hbOkOu#sL@B3kCAK6!w6G`;i+Z4 zmppE>J`P6ugcr1N!Udb;nRW?{Ad}JNYwqX zsn+_lP;NUx-KD7P?;oCXqAMh$#ccIrJ7S;9P4q1~xOoL~N{ZOCK2bBP-j6zVTJ#MtEb+4Gm5-qukzxg{_oPP)RCBcngq%6QJyhDCv> zN+Tb%(GZ^nG|xMW15DGRHKkqtj!zpG*Vzsy9^s54eA{L(z{i>-7WeKwz~OrC@%2Wa z&KnielQIfrQ&Wzp@XY|LqQa#;+iQdhuNn8J5)WS>kT>w=fyPY~O9!5!scBlG$HLtX zWzPOJKBR5|3Mjbs8OBBKcpmFkb?`5_muG|3Z->LCd$XvTd0&{m7`0O&@@#@71l`V0Qyk*&y>z) z;ojkMq;8zjA7kDV2G_30!L_sf?(mB}@7p~yRBd`>5Yq5fHQb7UpyJRswbnoPP^iij zGPLNZ2|jS8{@BO9Z)76gNFY0X3d-rxNq-bc(RGdJczzg4sbTJUY9X#PuH97x4j{GbVkWA7p zCx@qMiLgXPnKm1xGlxI!u`Kd5o9|<=C(! zyu-s5_wez`8n55QSF{sbZVaV$PdzIWPQYBBXvu`o_?_3bPGE zvy~0~6L7;Bj=Qr952hRF=P1Afkaql@mX7Kpb(AiT`>>JHqerwHH(B1JEQyW-q+0{E zeU9T474R#`eM`+KSeG$7A-J+1l1al_6@PMSwhFZc?a!&N;}|i>j?bo@k@UuJ#>|P> zh41)g4NNOj%G?SM^dao+>sGH@`y^O4x#DSq0F4OOogbuC!lUvjAFHYoJ1j5{rk&;8 zI4YRr2bfqShvUZgNcjeHqy6nw)%;Y(5E?YhsFPQmTD1zPW@Fnf*gmz3-_~WB=vU*8 zZ+fh=jA(JVd6$Ny@qjQ(oD(6yU?D0L0$XK} zLsLgJND=24@6*l*+p!2dk&xTf-Wb8+0oO|GWK}kI)BNrkv8&JV$zLc9o;+m=uQF+qhjVKE!yH3cGn1XSVh67KcG%m#(86zCAQ9d8ZGB5yAg-?u5B4;|^%F%u zONXCa57M;kyFqFpnX-5KhIy(2C&uLycT&&a8)O-=0jUYe5mvdmroC3PgO4%#pl?3Z zI0tdW0A)0&0K{pD3X38b(i_+97Pp;oTjg(?v6qJfb`rO}N2D^! zW?kUe$AscH=cW4k;nPvMf$J6V-Nov)jlT6EA9fQ$P6;xwYt7!+@cl^z2$7QB9?B`| zjD0Cb+E$vIjo{?_JiAh=*; zrXyM178ZdkoxOVmhiU1YRS$2;>0(`25FFkwaoNoJ3!o~SAl#wTJ)qZL*oHDwo;DDyx3 zZ85~^#T&G80+9%Q%t(U6avxsrI$*G=b+GRiG^G|=sTmO{$v(#no!H_t0XObW)@on$ zsSy|qFRU15ez}x{lN{LLMO|Gvl1gsnLt-i_BH&|u{J85hZ!_t&Jj6IR4F#Mx&kUCoAY~PVJru6~73AwU zXtjSCBic)mS9$3zFRy^g4CnOh?V_q-b8kus+W=4JDNC2=_%yOd$IyW{-=-n!bI{A* zYo;>=nH%e*riimoOB>5f7bZt*K3tKTkX;F zGWvAlyzj;quPfJKuE?b|uHe|s3I%x8pMn8@1^4S40R`TA@%!C5hb|WXtbwL9BH6!C ztw)O7NteXh*S$wDaZyqx{|+`h!&6|Uc_bCG{%653im$)o`EPh)^USVj&U;?!g3@83 z;H}Af_|x#bfx#LK0Xze~V(wMVvWoMC-iVwst5bR5k}g7n9z!$ymwwt#>sG9yZpjgt zZ3`VHPj9;S+AEHvj_nl8eAvO0-cUL1Cmxo%^H5Lk4Y*JhbJQL1vSD`{${w)b^@pR_ zLzl4D;7eci|<*F2I%eggeQ8KBCCow6e%2}+(P(#p*qD4Mq7u~ zdiYiO`Q$Jyxs!T-RSdAQvMQI=U@oTqzoX303jdtT}u ze=^TwFTF^!oI_l00N?^NRTQ5n9KVHmh15zd*pvlAWl@}VhkBkW$ImWZQ8%+pb}U0% zOZYwu(T&@;7v2v)X`0VKoC3wJ?Ub*t!cmlI%p32p+CARG@?jAfI$*xWSudhC&35jn zC4xy30Y{M=QjSe6Iq7c*N)>LgM3JU=_-rbS<{OB4hcgZK)!=4O$pX~pYtC)SJkySE z!IPT)r4|HYItqI9)})mG@k)X2J*91U<|j);e&cQFhsW=aMQ}ydX2naTjkFp%5eR{B z=EY^Bx;m)JVTMdzCo{P~lzQQ?AzPrBB-5RDX)TBgL<|i|czYi#BAydd#%JH8W2Y;y z#Sd5~(!|G`)WCIb)nI9Ujpm5gU;$lR;l7R_7L#ek5%PV*5;6~i{$c8OFe{O}9}1Aw z%;(u>F`cD<$VG)d5q$BIPZmW7PR6;*2n8ddK+viY7g;Z3$+5DXw)b4W0xX_#5-GH#e|i8_xVeWXKa?C>?x)q#HI5NWWAA}V4-6aVHP zi)Kbv$+@4DGzx_GkN&7pKbZIgd({henb^^uL%kQb?@Vg^VC=Yh{d#65^0U_c`^UD- zv9@ey=_;GlUo6YUZEtIB#7j*6@iGXb;4`sJnJR2g=DFz@&QU$*?NQ%V%KQPr>=Iqw1A5r6!BB87!5f z+I*y*O3-_PrjrY^Dt?OgUrs7Zdj!dL=vPpHF%b5K=?ePA3t!z9oClLrKun zX$$`sfY>>tYQsxTh<8JpwJ!S)?R!}AGSNy`Q+a?>Rn&FlM{k^mRDM!C-ZYDPR(QP* z`TQHHYWjFuW>+AE(JUPP${o95<-L-KXTQ9eyV2OpTYrwA5qHGP7}>3O(hX|$GCW~g z=e}EqH7%xSi7d08Pi2?c)v&imnes=DacE!R;B%%JqHOO2p9mZdp+OG0v6q%LzjC~D`$PgsvovSzA#y0bO;an7wS z-O2b)j&$^?!Mscq=iRiyT6gEmKL|69A`;p+S6ZjfjZ4djgkrW>p_p>3`3sYpekaWX zO$d%MYz}uej-Uf}i&{|(EH|r9w=8S3!Ngx$opjDPT#*X26g*Mpy41}N3?9C2S{~y2Pp;#MhJTPh3!Bcye0h3&QZyQt=6* zPh*}E-bd}*RBhPpHqko%wc1I&c$22Ly!^KLE}=tf*(=e39)xHRTDf|k?b@0+S5K;U zO_uYALuHD6D%?F15UCD9^~%+;oTtyZo8hj~E77f#u(^>@|Le;bB^imDZAxf@y-bKn z;+07Wx)1bd%-)e;399Z_%=8D(X{WcTS%=E5U%tFgBl9+Cp;}y^nGo>HCzl70wBW@V zO46#m>WqG5EDO?GmweOcIauG&@UPJV9vHOwEG51klXeWp2E-fWUwd>=?~kq_;uI*q zn2nXH)4f2fY*O=wwxx8YxRVMF+JTy}#`<`Dd0lG_4vna}{r9qabIl zfo;dkE5~T-;6)ZT(6tJK^yzA%^TxqISX0sZ#H?KqoZSaw$jtwT$u_0&wX#b{=0Cz`;Bb6+UH;G*;RvI_aktK*PO z$69@ouFscBRCV>IAOO21cxhHC*&@GjdflEfn*cLTO6T5gey!3R*K&yi1#YAY^9u-A zEDUxIeten~5%}R(+}VCLkao#HQq*|&PjTN>p-39+Zu6Ly^S}c7BTQjSL*;v&_=`j3 zZ_vo_nwBfUB6;svipK9H4oq6-p5k*d`D@(M)Kv8Iy9?7Zm{=ftuZ9oUhW1!1!cd21PM^BIHy?dkpm!u>EU@JvE1oMH!GT<}@O6jpq{$*Wu76my}VDh)>$MY}apSDpv zqzi?Z)zfdcZRQl(K!T2vQT_@E4Xu=SnVE67b=>!vmR301)^~~F%^(3X?uJHtBY6Q+ zrj(}4_$#h=%x|+i7f<@$N^}JQunvhv=)>cS8^MW8J$uL(5~~jr1vbjCmir4AwSqAj zj&4lC2^K8OJZpZz73m75uW?f!a=WKVp$$BBITY8cHogafF!O&_Zc78y+`k-IUwh!$ z*e_AIc@BRHzaBN&-nKYqys5G4&M_T40g3!1(YSXnq{ljr_sb3*54;Y6mMo>giR)AWFZ@De_vpfVV0md> z#tajDU8)PFoknzFCI{fozIUV_YwyNsW6}p=_;XFZceR@*^Ar~ef4xWTL z74!hSH|c@dEPhz4CgSKwr+9K1ojx>iuTD+dSbBWx2xX@IO3n23T4lDMjF5BKm~F|k zYM=9wJbhk%egZfZ>ASex-p^u-%cYJX&c@-RnGbgI{+%@B$9}_Kem0Q60fY(|1=j{) zYQN+q2=s)vUnW*G((TNu%z7?A4vLgsHD^^k_R2tHZ0{>MRy`9oZonD``j9+wzOFcL zH#Zs}WQQSoVf1Gfg+qn_S>W+Jta81K1&N|nwXXT#zRqb#LT}{ApaYJ;`~M(W96LH+ z5D&lO#00|yw%wu(i&OKYqoaFXVMxQ0tkE~QCFwu4Y#-V>fB0-h_6BnD7D6%0?sj$u zS9wY_&asr;vdia6#<4CRWevyQ-QCJCqMNvdXg=Fp9Pn%;*gAeZ)0;Ng5pWdxA5I*Q z%N?aSlPBm&)bxkzPQuLQiTXwE&C85TO3xt$NZcnp9*@la5#5-&xNMo77N=;IO+I#B z*daZ}-!WCc&9D%^kifrm+nBjU&P`b2df3k+-lcWLV4K71%X-==-h zb5-%|S`df7#$n<+uRHbo8PO`9Is&)k?jMslO4AZ}uUxS+jRe$T9h*8GZShT)I=T-B z+!5!(p0Z_R_36UN2A(Z4^U{C4LrzR#6GT74LY|%pN(&M*YXzyUnW=J{tb_c zis#Lck50e{#A)6ViGeHlaBpnv+0x&?Jc5Gi1H}83=m`Xji1YM|)L<{t)!khac}lmR zCh}!KbYTTf%e;n%qv84mG)@Z&pMOYK2%o@;j1zeFb0VX$8M#vvy3b05aDFNAVtRb; zM9`b?bSMurDbDof20ZA)Rl40I9ROQb?Q%{rT`D;{ySVr1AoXKCt9yX050UsPGZ$Wn z6^-`b*RMLq8hm4mfk@sM(Wd1B%{x1HVt&~LtWk0HpIM&vtB+5q0&hW`Hnl;jQnv}y z&pw~q;ZotUjZJxeo{R^7d$NlBVAu7hO#s_=dlP=~#SjE+&=I{s>$_9BR?>Zft zJ%T0T;%Vo{+1-7J)%O>E#()ePWx3S_vu`%QZT4c&mPrV=HZt~1yiI@y*-;WJDjuv( z+Mlpzv#l0Hfs+?aL2@)AC zFjD88ymswcgj(z=aUWIF<_?^+$sTH^XJD|HuJxMf&S1S9A3K-qAOr;R(!UtFZT400 za(z*5>My$9xtxqkqN1=3%#El_|7-@AUE7&zO@(q$9x-k5yCp25#p=?*l@m&m^(igIOkqS)Hw;|X4A`~-!|p$6*A#^!-$|@BYO9K zp9)V#if4_towZHC!qUynZ6$mc@$GpvVB9+`x+g>eU=Pcjwz{zbKuf)P zEbH&YVg6_hb-F+XbTzsqikeZj;kzvT4t#ks?Gya<>sP1Em}y3{m%(-0wPXP5Rfaqa zjoE?PS|gu8BuQa$q1Pv*WVzN=?^c6O}YHs3N_0e z%~IWie*E}~rujvDSK7kIwTd)?;f1qCRwr@YbTo@Ph1|)j@2(f;?-3q$;4nCKb@{J% z??JuuwDdX4>DfwpPJ3Bt>4PJ5nKZKKnp-$#)4|y*y=WyJG<}YUiEUQc#4F~z1|BXh zE`oSq;?bmc(Tjc^+4txd3h)|X4baXRnlG%|#+8v^5Ir){d7@qZv98PmG?(^0xwq$Sn$G(ctJgs zcg*W8M|W2juF!{ItX=oXm-Q1HuXXvfFF$fH@I<)QCTehN=GNWKq{dz_3{Eq{+bnr_ zc&_9v-~cWQjH~u>KP?nhRPZArBK%FbHx1WBz21ENk@+amoi5fruD)m&{Cnr$CkKa5 zz=qpb{wr|SO-4N-zzx>aqxkC--c!yEK}3Y>NTC9;Hx#O?6p9LYTG2>TyPqFSNT!Yg ztiK$a*u^_Jdx6}CZ@8FR-{9&SE|;$1ool5&^zdC)G;!h7U0M54t6=O9{9`CDeF1jD z&3=IYkZtv5&MwMH0oeZ+6#v;TdP!-q2+Ll|cN@ZZm)l2>JWejlV{|hSX@`3H9k^7p zHOaBe&)YcknMujW-hcQIGBsr^4BJCE)jA1UP5YWDIzj6rd28m9;si{9ecAbrp7Hx( zG9F(U+R;B)-EVTdkH5UP#4bUPbMF5f&V9Ug#TKZQCEooDy$8won9r~1 zzIuYmHxrs{T3E0UzIK20DkHP_QIhD{rMf2F8~q8TWbs#2M?RH=uq#laOipzq`}DOC zdMkTBLpSyf$T8`J5js&VypH=D8%`5$`BKhNWV^bUc-56QYvB8{`R|^_lnXI^!3~Rc zjc^hkfVV}E;sk&k8G&N%lYB6ZEt<^?>U}N1h&@|##>d~r0gMT4lc*m$z!8VEJdv5t zNA_S9l_kzkJ*WQ8H{mC1lw~?h-|}gZ3|azR#!J6;$IRDyZS+41#CfDaX7OCbFA9&5 zg~e|6*>St~)&}jY~xe{ zDojG@6T$greIWx^srKWtP^EL0s&2NE&d@%jFn$cLoaDRWkwZlU$09bFY<< zYxxi=pbK{+%zgZX2s(LMcn^p(VAW8J0syWM*S9i)y4NCGb8I~nPAEFOmy^~P2 z7^9YRoj;FS?;~f;B%*%nj`jl-0>O;v2vb0zJ>g@L|AHgn$!tX)CnP;7b{UMpn_225 z^DcvScXx49-+2NS3?CvqUqo8@!Aj+qhi-B-YH$d2BVSL59_PhCD0YGv_a5s?PfD1G zQKe^HF#$70uO!oE1{0i3xx~BG_(*sa#3U%jU}GE(z())%kPHS)4>!#?z?#KFS;p!&{H zMFSgLcOEHrx>u|V4$Mt6dor7SNbthlw@-gvZ~?bV|>g{Cwejle&aa6!spB()uMynhUie`W}~+uFl$zjbx08Tab90WFp*ORFdn; zPs4e0*r`3M^Df{KF-q*r3uKsw^j9Fq@mvhJH33$@`tNb}jxIL6uFT~Ekz>!`o<1>O zhDDw2bOx?K>}6JmLJ+8IS`n?&J!*B7p>|xq3#DPwMPw?V75R!+NixrVrC@jRjE`iS z)>+%Ot0r}u`yVECZ>>D!{GPRf2k)LZ_#xkd+>aN`y|{#;^3gds<8bbM8UuUFQqWo# zFQUu!OXpVuYXuu0;>uy=BysNv-TBftL%tsU#CB8H^R|4&4sHlzM@09!6B&Ip8E?8X zSrCS1F5Hu|;C%-t5gvH_qQqan&5Bd%{;3FNjx?=GA$5*MKejHx?Z#2mIqMa4_MUN- zbELV`O!3iiM0~$cSq8rUl@7(#qDxni`XiTHHXu_wz-wC zx7RG0uDAGVfkHH5`Hp@5oR%1UD6A7H@%R`-3@5P$J>Us)*@tj>4xv|YV$Q6wz8c26 z@Dt(q|CVtSbn@gs7#7nDK@77}Sm@-%JhZwC`7EN-AxNar27-+0cfmJ#`w+)}YB%$r zL04irDXJaf-SeDrVcA)RneKT2X15JLN$5vwZc!>=ZicpWWFx;^`^@=lA00 z{@ucgkL%(-0tz*g{Lgn;ct7lak?H@-?XdqFk+ncdVb|Ke#_=~adgyq z`GBj6th6vGxXrS9H>{N;ZzKXA9~Y=BxFD*c=lLIy_sB@On;QXT%-(H=U;MSayz_9T zh%%-L92s>B*ol+GYU3igCN=p41X}DXK&2w8H{Bx|Cq}<50pKT@{6Zo5@Ug=gqVJgQ z16-6v>WJfWub=uUViA(+@uO)!fkdlLu+wonnm}xsmr)fKVdE?b%)P$Z=cZ3+kFK~# zw?UKaq`lPje>vbjmGt@QMfx5j8ks*F)$S zR#bQhg^syjb#Q3^Fu?+3AVRSV_divlW0KKApV+; z1UUf!R}?SS#TSNz=iI#ty}AE2bcR-b_vn3mo8wjoc-OGJADW0L^}f4cC!Pd{JuUODJP3#jW`QvE`vhuR z3+EOn{)cp~4dLj1%%DJdj4s^#!|$&RPmR|3Z2A^Xjr$yUVXe90xUzq1Luc4Khd_nRR2gFVfY~2JV&4 ztsWjZ+(E-Sho5XAs|EGx(3QXUm3v2>IC>(Dh?;ebr44v6#-Mw|5~pO{G|aw>TtZAa z-@#G;&%Mv1dWH(Jl$7S(t*<4UM#9g}=VnBgh{Ian!ndo9qpsqZTW;5k*dKWxpOaT& z8QEtD;H`&LW770uEK4FD7yI)jQ^Qc&KSNq-Mph{sVjSg)^Svn1jEHhfI==f&deel4 zBc*$48@PO4Hid=;&&q&Ue`meyydsy(BXI4)0RH{<*3Jy%_s{Rci_jkE^fE72?;xyx z(f-Iz-T!PRI76v_Q{>h4^A8jo9297MA>Qg-^}Hk2d~8b+?xyUoI^P1HYp8^(!zx9D zO2M0W;Q|{v?W}B(IYksP<&g%mAQ+A?gvdx{Ki4~-t3SQZxzlTj(MKb=WvX0jv+t1ekw8`?9cUkKAy-cn#vNVX$OcKN?|O*lJHbp{M-Y?PW(=&w zmK|4pYB!F9;J;7nG1Fh33Wh>HqdulwM^HD<#>qZxm217h)Ls5(XxLmd3P9<%q$XFk zb|?#^xi3&$QAy+J$f3BS^PGm?6lT{WjJ7p{mJukI!I*LOX(DWI5O$^Tr+;!yvu!B z+TpK*)ny>$I%qq;-iB>w6v?SPw1(i@T#>4$wHU+i8=<@4&ZtjS5x#nY!c65pr?fW# z_0c`CP5Y~x63#uJ!?=%AWd7n*uDN8afERB3Ot?lI_3?NHxYfSR>JjICjmH+e3YU|( zB%Qi^v*i0BSujA#Jf><|K3i8sDEQVC$f55`E{l{R5NU@Jnla z`&MlkN)TG<3}Uc=-l0KqVC?M7Z0+t0d^GestXrvc6JMz(Cgs z|Ig=t{x`w%zonp==C;T$&k><+F199p7+MQ$HgD=RdkKC!@D746H_i5^P8zRm$--r# zllJDdJD1(ReEmwWwY7ECcWcK4-)!BeN(%=E2mUV(LQIQR^sdm(lL0Vxy(%Px2XKeN z>F}mjUsXUCHtW)G>Y=bMa3%>>RoQ=th5}*Pg|$Z1?dVpPohsj*YIKjl2jG+G05T#1 zjJUz`Dcnqw0=NiV(>MOu{&8gOk%NQKG-~ZzikRo>gUf6qoJwL8HEmlP%2_)L#v@wD z<40E)n?zYn%RR#UjI_0LQq|B1|Cah#FGs6>d^T0*@&g401u@GV>MzP+JUeI5a+k9R z!*-CyBTgg4mhRLfh3(}1-9+(KUC>t>a5?u+#s^aNSza*T+p)O z#L?ktM4ZV4|4(`9%j;V9xb%_r8I`m46`8QW!aOU`11=_Xxt6J=c}QwpW^iG_d~xv# zR*-cn%6@O^aXR`ygvL*o)o{M;ZHxn|)~MEfnRF&Hp0yf2^7uqwKdYw3;C&%{GJ9lX zz5$T!q>6){vFrK5BK-;8VUC9-#J)DfsVS>tVBc4Fr6KlIf-eKG5_6 z!xGt>_SCqKuG`+;)}XDuJ?m=?Ges1m8@lTnt)G!X^Z}@(<#8*pn%i6Qw&@c#DFf86 z(qtAF>mjGu?>678a5L4_=9UKBnaKUm@A{Rq!F>~Jmy`jYz_CaBY{?EUx0Ydq$$Sue zI>|5TI#%AR@3is8%)G5VIO^~X_|U%PT?eGW5;9rL|0~erNc73m zr@VLlz;_E5p##b{t)2=n#w&CO!E>*(({eS;Gi+`kNaA>c1s0S$OG`IDxsdFU(a6Gk zIP4nvLr2ff5~yKi+lGbe$a5Rmot&Jm5{qRO7E-o`QK>sR3iI$RUDbdQu7#!L&6lUH z!y_YKxSHNoR!VAYZH+--VuPdNZ1M3gRvfTH2~}SHgu%C<;E;}!GiGq`(Yd+8;K8p9 z#aG3di;YrJQj3mO{Lb&9)gC{l!vOC17ft*Bhqbp3tK$0~eK$x6C?$d*4bq{YAf3_; z(v5&1-8rOyl$3y!bV!JFZb~|&rAxYN6C0R2d_L!U?(cV=bMNz<``kao*)y|eR=jJy z)_bjOUl$%op?w<_EqSJ+XCE2eHQguYwWuX2X$-CNT^O*=taLb+P=lIp@)kh{Yb{F; z<+4t=Z(<^`X*teB2Gd5)#^4LR2n5Ip>h5kn?ZGO!*^~Z}QJjtVF4E{m8F;2a z?2f23ZxWLIMENAZmg=CpCgz;Z(d7}W)vFjA20gKNmG;jb>Yp|1PWjaIA5)We8VLo# zP#gut%R!JphCmGmeYy*by>75}t6zG&uO#Bo%4w`zC#c$WuP0k}0Ql}^4f ze(1AlRX@-&?P}NmPw+kB2rRXQTC^=Y1nyx9o0)KAc)|$pkyY#4)DDXOn~#_epN1i7UeVJ(^WvWMZO`bB`aCn6HMXUKZ`@Vyys=py z8Q^*Y9JBJ&Mg&LspT-4bo%lJIzfcK%s;k2?2VGbKAEaovc(B&^Hc=^U zFu?rVzMU6hxqXLaK*n6MfxoFrhw}2ne^LU%ubh7!*RD8V>o|yg5@t=gLyL<>Jg@EU34{tn^^^LDDk$xHQ25NMbIcG!a^2*fI zR04cbENG2^jjQWRXhD7jq}>T$zNo1x3}K>Ss8xuzbZgPz!AgG6sJ2jPRx=||bm)(d zVc#r_Rq#2CT1qxo9BR}kgI-wurp6`X!GcVvJ|ci!*H=OxlyF$hhA_(cvpMx<7jKcgNPrOwRbWpa^1O;%=i3@ zAEn=ltF?%yjEd3lJtD>~)3p_JEFAK{KJJ$nACS6tEr|P(9G`?FAT-m1;@!KK8o1u5 zF{dccRFy;@i%RYi?7ETLUdy^9FoxaS4H& zZH-jN6Dy8>1Vz!r!~|MT-{FsP?@&>L8UvS9GzO(rOCGUBFWcVJC*e^x=S~iLaS`PU zqrM0B7#G-QqY@+k3L;^mEuolX7>)a!BEmf$U04RnuyKY z#??L9xVCTIO_%O%kglO4Tk=ddrfdw~x&&ODeN8gqn)BbyRFZ0Iu{ROY4DmcUIQHQA z!Kpe6-&?&Izukj-tH-(_4;FF}L> zBY|VylmTdD(!V2^ zkZ9S<%A`8(*({vAV4razC`5ti6xf87BM@#pJUrBFY`9Q(!NWV(;K2fH)BUI*)5i_%L!;bu&oY~l*)SBd=Cv3l%;Qn; zo##k_wMLDM)IH}XV~5OSfWKu+IJTs`4Qn+yta(xJVPIuOvG`gF*$-~fQ%UQq!9qdx zoUq`l7rF@GJiWO;v^DiccYNaIGUQ0;qocEL{F_5&=~|)01r+~>z&7nX#T`3u61US+a3XACzr0F$(<$rwBlj5$RvQHRE6uVM-LD#oFBFM6 zhlo2WF)=Y8a4QJ=R#WqsfPmoi0+N-}gRn5H@ySV4*ifd3at!jt?mf}APwG4{6ti-uL=4%xcJA_l+)ULRg-<7f)8!#!Td4kiG{^HTk6xs# zv#?n66&H&dT~>bPK>5%B1pxYzolx9_3M1y<2EurMKOwLjJ2Hho?&DW2Wr`^*Ts9m? z@eYUb9=>b({eqy$$oP1VfiI&AZ)mw;d8lEzw3HNjI%O1_|Hy20%Nq%ap!ID#sK|LI z6m)$U$Ug#ByjZY{zaoF{A6feF#W#kEO)5b%KzubN`4~X&z^Pn|VB5vfs^emYkoE{* z!da2&3tI_k=A;;nojP|PP7a22`48gA57s(rWT)YB&tp5$$Ydm5q~p&2yu7iP6EY)A zCpJBh5A`{&^{)m7g0&y*A|Eq8;9W}5vOxX(%LuZ#+RBmVu1jiD&Xq7K|wgd5Mg#*Sp49?lULpj5VIkOn3>T$MH4 zT%3EKJxzUyP2mhL17_N1l!Z%fB(IN+;g7fZp`kKxH&*u8_VrZ3Dq<8A|KPoSBL_j7 zyDUttvu0kq`nAW`MmDT7Gc!N7Eb5i#@>A{K=;@K)mRA$k&N)RSIdA#}Vmu61D(HZ` zy7`g!{!1Mw+82{Oc z`o~(E^Xq}xt3osw!&_GI(1&^5JDi5OV}7xDrk<AxjXt**NqgwCFdm+l)Eq|`=DN>}y@v>R#%rkQ1+nmk>(L>^vU8+D;<2|iykqnkXkyOJ z+(YRC(i;MHA3o%w7FJayJj7j1fxOiC)YR(nTL14Yz$Gj)QqsHIIskn7D5!zo&k%VF zAQpu9qqm37Z+5rsn)TG=tz~Pj6EL}q%`l%L{mpPIC@3HHI#4G$=-~cUqKwCPs(kSr zEsT+?Y3Lh0D^XXxXfjH?g!n!^YpA)x04r&v><6wt)I|3xOz-PWHs;w?j}OnB#~?T~ zYjuB80J&cpszhwgtXoR|mxXesDJUppn3*{^ zGPXNXA0>q8O;xE)4yAWr$$vSy=0;*6-rPsz<@oJbeDcym31eSZIe|G`aXlEj;)JG8)zU zmkbYwsp9?3vQ2IF4On+}cD6P*MVnb)h|H!u3_?w^(|xvRHv?wHm~G|1b6S`~r;mG% z3i#e!+*BtdJRb3?i&~bkM!gQd5E&y#oKe-+Xun23A;p&7+~054(hQ%~6rIHkW$Z+R z^J@|H-qmZ-t2D`3Sax9yxSYUq5R`#O>KLc`gK zyWi5y%9iS>1!8ylqL@XN-t4KM2dRHoS67wWvSdOOCLU$gHcZVmt~Y$!Q4q+NLyM{P zvDeYDh9%UNnBs!Umo0KADkCdCE0X;r->)aXT0^;z$kCebX~y0z+BfSOpO(}O;$Ex& zy`4JC$+RlhcYX79&`ud$BH(W*{}3F5-Tx)oVDJw_%h}HXJ%udW*HczJ*rF-5$!#jh zqJTAraprL7@CF?|))IpB6alyrZQ?B<>PoiY*&|HCnK4m#hBWuOEiseJMwWIm>%@wm zaO{pXFq`1zSbFxPZSbk1eP8_Aclr6QJ0U2P=IRz$5qz}rE25jd*5k<329_ola@liy zLW;%jj)5gWrQ=6wzdtMQ?JZDgSd;a znvZ9{PyV`F4h=I%Odf4GLr6f=-PW5A-0X>D1}ZIwYqozYy~;}6OH+Jiv%f%{1jevL zO1ggC?0=T_^9o#iTH9-Y7A~Xf$>29-^fRscTtOKee&%O#JY4qN>4qZiC~SZrc?Ac9LbQvv%eIz4N6FkW~3c^izZ?HZMIiUBcac;D&p@z6&6D@ z9+mJ1Uo8!dgfZyTXu@yZhW9B|I0l-}NH)-%5lg!lJMH&4yuYD_0-qyeM1l4E{yzw?% zN{e}`Yy*lUG7o47MKQ$9>Na{FTY8u3yl^NeBf;5z{QGo4Yb}2aWM_2!7F-JP^vf-b z6lRyiYT(XDXO(!7j(rtm z(7L$^g++@L!})6Ofvywq1MSb!>Qu;*30Wgu#HQCyT%&c?KYdTi^%Z_n;Zv0tx?#kJ zwVyq{OCT-rbYF0w3FF}Yc{&zkpnt76tFb<=sdhU_nV%k`+wZ_$uXKCXWdf!@R_s9stb&z>p&{5e2y3tycM+VwzC+c!@N>^F|xfVJ=s z>qnWp=Acdb`&&4OSGw!rMHK^@GuF!i9*yted>3y?45(zfylZO*)tN;mZp$}N?pnLc zoYPETo-VjvyUU$rn_8=%NcsE(Y2xT5WDQQ;f+juHwz@DVoh|B3&WM%8BYt%8oDsn4 z?lX7JZ&YpQ+oIf+Be$99DQcKsQ@ZbN55=ohQPYn!Ar(9yj9p8c;w_EO zfB)iX_zz<-IuZEted(*VOLqh6{^ob|@x77uXzl*X%O-}G2#$?%wDXiqyB;rs>++pU z=fB~YeCG%Tr?X#{dYOyU=OjA^m0tkPs@sLL6_ka#@@dC2<62h)iJWlJHw@9jOV{j|u;TBD{`REH$~?!*mh8GRn7$&AQkq z48IsOz9g-@c%z{3^;tjw*K!sOuEbvrv<-b&xs5I}N{ic0BCN^%u<*=453s4F%YpHV zxJS)FrD!>Um#sDjNl)L7Q~I>1?I1;|2l6rvd$%IU>vr^%e_X9pQfT5$?+$nNB4+EM z_RBSZrM1+d_*32Xm!o)?j8RI@l>WXgzcE6>5n#$+Q0|%|SzVq!rBh4uBYxmHINtHz zauPp=@d;VvQe0dOf)ap9hZ{5aSx&qqBE?cS*vhNoi|!6iMv1jTX%4_ACT4iLvnz$w zHY8x!8-DY85XBG*{5W(qFe7=c$4Gb&PrBXi{&Cs2EIQ#AIGi|7^_(TKZ8YKuVYea* z5I?L`DKs_TP1=lP^M6;r*q4ZTVc!DGNrzkpH!K0?S<C3aSBU# zx~n4VTGOT9_vY_I%9rigQm)Z9pj#Da1Icjt4V6VSXmoQ}VBS$ew*K;h05$MNqUt6u z^;R@FP(0ok#NVSjCEO(MQU z1!g9$7yx*zqOH+0H|@7Rkn*dGUF&b>ZQA`Ms0?|ZywFf3uCFU7=FUnP53eSj_o7Hf z{%meEo!C?3lR8Bb&0WvEJl3`$fn~Lxd>K1GdvJWU15_CL`UZ(^XX9fF4ny6>H#w7d zp6>q>JpJ_`7Qz7hGOnP&JXk*OmCojXgFT1AA%Xw&)%)a~0u#dr3&(1? z2^tr2DYd_ccVBC|oIMQW;lfR-1|Ov!W-&XEhj~20$CZx9qH(C#KRrdP0)%lHt<=fS z@|nY>R{aA$r@U^DmmWfMpyra4m*>sAX%~U2+`YlNJVVa8GNtU7R5NK;T-;Z8uE$$p z`m3D?)Xp#-KDmqgCqwpGYlTJ4au&UO*CsJbBHB-ecl#RvVN;RY^M{nxyWlR#Z8$OO zW8Ly$zvWCe%E1*zkAo#uw`PylhCfC8D&+u}q*sE|UPgj&intcAF_u)A1AR&AfKjon{1%hriqu6Aic{l`*_$wf00^A1X=Q_2eG7Wd(rl zW#B#f0gbUl!jG7`1Z8|`a)jaZM;^x)?u5(?u`)c>%5_oNJoja==PuJR*wCmMmL1Xx z;I~x{-fw6dCvLskEuIr=R+Dm&5IWQ=xY_wB(Z|aM^Ef+2?x$TRJy&_Hk`g4I*6EEI zGdejF<%@RVQPOhp!A7!*sK)}#k^s`pzPNwAncmzXr*|lfhm;r77^$xABdQ*Z07v*r zZ)`xSCg&Oy|ntXs_=6=Djr8|YPL9Dc&@Aib@1{ltPnau zXYb03Q@CwH2x+pX-wq>#WRC1ycZiRP7)^yoB>Dr_I(@s`_ks8_?~m6r0o|}}wKawN zu@2XDff@Sw8n6zT7e3VZ87p)tPu<`?{-V@ruO>#qJuDZERO*8+m0lr9*o)0pCrGq2 zYj2Jxs+2}#5tb6wXLlmTACU6tuGB^UqtpaxyCD3g&wlKYzM~jHUY=AiCLL)$Jz+S$ zvfO}V+^11fT0r7HEaPgs=KA3cWdXdL%HJT>9oyfSOG&n<&BnethD$VT+{GcE*})Sx zt~X%?EawztfUJC%PSBFZ!{1tVzSOqAyZ4ju4k1tVcT~CDW!zv1ClwJUO8r665iNHO zHdC3}54 zVe&Y{(;n2m@X6D^+Di1Qfeuo{F?UvWhK6+UCaUA-9mP@06rJgmY9?P+4I65@W+egtwh{~^VmwP!)ji`PRMv49)M0b?CeF-`Xa!G?n3FHP-y4w^=x;jTmz{GRQ3Jv ziw_Ia=Sfxku+1I$HCTRPF;06m-9m&Mb*W$?gEzHTyh`^?@3g=g5=iDW}AVEf7r94^p_DHY+ZMkl?Ct65ss8JTPP5Rcr<5i=Pa4RHYKepTB$(iCf z1tFHQa%qV;g22n>dv|pWwQik$lAlN0IEM+E+)vp%)ZY$vedk<)B#oJ+D5qdPYKC!9 z>zAiP2dAW-4KE~KW(I%Op}9~2GPxZn{*C?!)g4`pq!sePj=RO8(=(07=xgLkReEdxu{>leVQ>=DxE>OT($&^0c0-dm+fjVDNU(6AD2OO|n(D?IsTfCuRp%&rTE_sM&cMG!e}A-@bU=w#>Y zNRD!Q%Udoqlx~DKDn;vri0N1ErFq*4**A@t*k<;00e3ObmK%zY&87GP1c){=r@J9Q zbad&XF_B9dvJaHTe-XKf?c$CoEK;Ik2ZSkXFKsH^y@Z-&y=LzD3!E8}=H<^Mx}Ftm z8H17;nBIE8YShCaq1p_gMob597T89#ALhRTX9H$>-ojhnr$=_9L%1jy1M`qLQRkM5 zEP9pw`?u!2%rnKEzbC1NGDK~N;Y$Ur*ldBPpk~`r9vLux04+d3nEPgzfiH zi@$#l7+=l03)&zl)E&u&xREMrBFM!tqFzVR7ytukzfea0VUU2UOs&wRzOU?MDJk07@Cx!Uc z<$yA8kGkVmy#B9^ygkYW&TnSsq7i5SAY<@*p7P#*VNx37(L63ME%Udp%b*CWBqiM% zcWiIy?Fcl=&)fbnj&|_b4p>i1N=f&&U@Y{rVUcRJ^lK0+9%8veKd)6AtHF%pAX76A z{N&GO8T(d{k;a<=#gOo^Yk1Ybw*kEmw&b`E^Z@CcpsHFtH9+^Ra3453t5@nIC&_Z; zy*IgI?ykk6D{PR{HYMy?y?aYN;m69-Jc(GLjX67apwFlo76q=pyHxYdfD~)L#P{CiKN)99PpEY3%Im z5Dh^?MFG(4bai!;&v_%%jT$1T31nHz`QcC$V7Vu>vnF3FBC?l8t+#=hBOoMDyc@oa z^G4bvUl*$|dL-Jqae9W`xZ2>XdA?$Ct~Ln*jIzSpTLE_+iTL?XklF^~L@1E0PdHWC z(*I16i8LJLO$DbYlreiApJ}etj%xMI0Lc6T(2@wwrF%M~`fiWbldU54iB3i#c>ps( ztER9B=AzshKf7?jtHJvktHU3QpEkye_B~G^;%PqDEb3E0&u`@2%LcAiFm_Pw-8bbj zlSHXS^M>V(jLnfv7@P$VAVj2Eg9nQzs2e_2UNihC=5Lz1q$kF-)6F4UsC)~2;LN;% z56eph%oT;VlZ>-}+iEWFQ!D`Wl(t2ydCx>dPR1U*sLWBfRj*$A@aJ50Es;v&GVS%5 z`l~xr0%_v6o5lCHKvgLtJ1XuHvpoCZH%Z#aJuoQCgoXPtnyTvG{W2Os%GaegfR)un zXGpZVT3j(>qs&_ZV;QLcZvYuM85MI?)==!zK1%Dv;m_LV`#uw|Wg>AM&CCRDT-eyH zFdou-J6oSE@&`S#1sQr8ZQosqslIlP#z&ayCg6AB@ic!d6qOHMTAg)L9HQmy9$)fz zvpN5okRKJ!RIv2?7vS){05(VPLj~~k#-1s@LLeq5X9g|ZECB%5lGB^TR>##RQTTvq z(Si1^=UDIR<{k%55l?)UNq+wx4|ZQqvbK_yn1XT`L}N4V}2DbV=pda*EUd!-hA7~NF<63 zZ7`0U0)8-Z8~v3mRDwN>)+?*1h!v%FK{{;U(QO`#h5nYq_2A^7HE;`cisF!QI?lxrlbB2G}O& z;crn%#i<#R)sB&~Mr0F1B7Tdy%)v8k1mcI+wQhf#MM@e$+WXXKGU{sjf7|E-dE#?x zaJc5^O*wKCk_kmkNk97RPm%zx{&MkC3hv<4!~EX+cdy8R0E?Pj@5h5OWj%Ha-!cC8 zU!QF(y0$dA?YO?yVYXu71Iuu7``5A?zXw4MF4xP|-IW%%t$SZ*PkZ(ycRY!mx2(+l zmz89jTX@hek3F9R-sV=HD#+=!2HALTC9MNyI~jyK!pw@a>Xt*!^BA88;xo1S$VJ`oxhGVcBw2LdW3(uqXL| zL@!bl_=T_BFB~GyY9)U{{&)>dEr0(a82|lRTIY77mVA;tbzW}qXhc8h>v`ERdM^Af z9tNsL%W9vsS)lRh{9{ohynX8yJVH+PEiT^1T{KFU#lh~YLpw0_joNc0#wGNgSWFOb zD~hg!OM5IMl7eUKSz>%?RowK!&6k8rJtM+CiH33!23TnC-Z4N4Qw}9LneQyeoo;fb zdMxcOo6UBI|E@p}&koGpB@e@5HW?Nw7Z~bNH(9F%v}9<$6=%!5G37YQ?ijjsfwqd( z!M?Nyu9=@~?i3WyNb?CsZY@1DX1kMxkNr~b-#_1yv_tJqUd&(t{aDvU^wgJ zgtE_$G!topmu^JP9A;8pcCN~P#GtFo%`I)l^cV5jz>6-5m~b!uBHmguV~u*xq?oli z;c+)`lniaYM#%n+7e6~YJJ>9}8H?tRXE$qfg$U6e$lU?%r5ouuq7Wx0R#EW}u*HP7 z<;qsz2P?*-ONG$mK<#Bxi@AD?GB7uj94)A#HG@lohvb60z=gRBE4>TXm z{qCN;7BNgsqwW}x>9Ou)RutB3}mtFK*>?lQz(q#ed2VWYIDB@~wbTls2|?&rRK6kM7aasy@DE zx+-bm=CyaHi0E-C#i*DCFg~`yi3#eLaNugMN%c#G22&%qB9+(R>Un9Rv$YM(pB zNXJSNqouU0?VxM_-qI}IAVdjuKugU-dszbM2CqY{gy&r2-Jc5~NFo6aZvpdN@{1RV zTxbxxt=d~7&hx;Ylexc>`ik!ro|Eqw1~UV6B0(!5-#1C&*>kk$_t&5MknI1**o*ln z!kF)?Bvt@qHwtR0l0KiJVYKl)SCj?V$S`q(6*4w0PY5A->j&jOVROyd5r(5x$Rz(Z z{=AmQz{bwJPDD)1#>%=zM7%b@&SoB6;D6hO_3^W$spFg-Z?B;JeY+$Yl&k)xPE!KZ zAQNk%`xdFPxHN_3>}_214oO)2O+#lEQs;fNsGa=5w0P+^3HgrLLFFmn>TahP1lJF~Nj_;&A`LCDlxstA+* z6izauY&iMnfx;E zTcp)2h>3FPn+9@Sj5!3;AHM2%dzqER6yT6>`SM-zBbpO^Y^jxed?1|9k-IH+fx5yY z&@hJa?44R*0ySCz8H0obrU@FAH?DRjjwa1wbl^zqg zeaPO13x_hvsv1!{|mRxFNVmZz5-Xqe=SF_^t1Q(FEKF zQipX0GBjJ;PkYX2)_};eA(Y(D9&;QYKhnymzxdvQ(SbjH^<9Q2G&KX%SJrKi#n{ zTnuHxqE5hHZCdK`i-)wH-!YxZ1^C%ZuYbnk`=3*MF#``NI86rcU)l!sEwF?ChvZDYL0kv?+wZr6GlyIM3Hk zUwxp5pPSQugwjP%NEx!i^cr8=i64q2km4d?Jxh;zcoFKCbmw9a&mmi@u-BKBXx`m zQknPquL=SpEGH`RTOQVS$Nv-}xF=bxlvV%~G=m#F=qv3=j<^?FZJO$m72Q(wCWN~Y zT=u0-Dl|AK?SPD6b|S~^j)$OzzQ>{zaJ)8~ z{v31N9v*jl(NgyD$@=$tNA7Az8Dy1cwGW3#LuJay^xe`B2P^FGPul z9>UOl-oF@N?>4Zi>ulu+VdwP73H?r>=Mf ziH>rs!*5Jd#B97V&nk;Itq$`1+=y?wQ3t*nNX?EYSqvAYKZ`!Opm6N231FrjPBB zxMuW3>b_w_fLuOax!?vHZikHPl|Mbhr}$oaD86eu{GE*C4@dyZlW+?xe8bN|Q8uZ< zRC&E$Wf|k=)OoPrIjTMX6v3RZ#Lihz%X?-{Jx+D+Te&?xlj+9#28H_q@z@CHoPnyU zZEi}~M&CX(IDFq;isl`$l;lSu$yHgxd}r_0;1qf?K$-A~lFD1v;M(lZ>8Y7S#lqMT z$Jeoo_rnrhyRN`6Ll#yA7DFf{>6K51!mUY z8f_l=<9i6AvxsFle52xy6|KX?mY2JOzfn}x*V?Z*bl%)thdjM-#u)^JI|I&d2O8N! zf%mVS5~d@RRtKE54iDHx-1PrWMdLdv#3j>D*L#K@zD=M(!wt#t5TuM#8o0-&6sM8v z%=ALuA#`&sarirz7w?CM5+A~Iv8h!>|>ph z14R9gS+EdN9#=LXJ9V>gS|3D1f&W2Evt{GLnS3dP>gG`i6x9T59v{^$hZPNXwf|32 z`Y$N;@Jap;D22N3wHOi{I00Gx9Ev{pfx|8?ZX=6}$~MU7Gcz&Iwe^F+rkEu?r&l)% zFUl_3-bJ5+wV8gOENksomuBr%wN#_K_kjFw-(YAOk4TR8Q|%8|4l)bQCbaUeR2Yew z*O4=_XQP`naOc*b9tmM;REOImAgzDuD}Gm%I53P%!I@V%G`vy zm|<|+eC{I-GXwOQ16*cIpIzyuCW|8AX22QN7Y%`DeC*PZRFvg;`ja+G>2Gl;Ai^G! zKs|5VdiWdP?jy59BR+L$sEoYpN!fr zA+dU+uwY6Z_G^{iR5cg>QJp?12bAQ7(r(O0#y}83K(?8>EiuTP1RlnZa^d1qKf>kb zyGdAAqDUV-PQiT>r=ih6`svrjAW5bZ5Zt_)1$o6w zkyb%K(b~y-EVr&OOodM&aY|lI4tw5i+gCW+#YJ~*YR)%n;HgY}c@sHhmywPfJy}-* z7d<+g)(!x z(MVeNF~#&NS|TgLuXx9zhY)5S`bEU$!T!glNt$@`%|x}E9g-Q}!%d;_>h!{BOuuIP zZ-=L~%lXCmxV6g`R(#R@n&RH_z>HdjHN1#_J^UG^JeSM0(jP#5$zrHU_qzJ*!e-|Q z85wl`2Q-2l@KHQ6xi%+Tnb=k`kg^j%pw-J4hs$7V*P z1xTw&esj8S{FadTaoKspBKfatIeSGrd~hE;Ad*MTeb&Lr`@)GJ(>E7E^Z4kHp-KPw^DZx++Boho3H`90Tr-G(l}9eSI;*{`m4YLZnY?{G3_nmJ3)4 zU-ZL)>%G%!w^}_F1N9I_6GHa_$wd`M6m)ck)7hC2qN3vOjE~95j=)vd&x4?{M$D?? zvXIT+qJ&JQ<3aFOtn^G5`(1Zwq-(CDyOs>KWRIpIUZ4CeUJN1-pPKIgXwXwXDLA@J!wqRC4%XE8O6$FY*w}+!9Q0_s zf&w%##qd>m?=N2xiJ)}XOP@(^4~O0G#hdCg7k5`!j%_-}ohtrB1|?L^4C}oax5oKT zE`eig_mwwaoNyoS>}3^>5ws$Ug`fW_f52`JBnmyb0mXH6-^yqLM?Fyri-$5wMjl+% zGiI8KXH4LMKntP9tM!4@{@5Bk{}Ja1C6e2NP+?|~O*w;(^~o=KvpCptrEuscQByrN z7orU=P}#n6M@UFVE2hkoEL6T3DlgBg&ap{=k;{_~mzOIdeb_!{OscAG{c>*Nv^r2U z;3i=cw0(04F2kDuXnV=+@zH~6$wM}ycQYH4(Pbs@)V-!i*P&)tS zMX$@zy)pZ;&JQajZz2o@ic1XW-CfM7(Bhe26+Z) z)cR7e-a7R7Of`K`A8tQ$1-v@K$&o6j(46Fm!=vcUK>hqgCv}@VAWE<7bBcIvbxy?e zgfOsjbZTR$sMFVy(dO{>2#0$Z^d&BGUR)qIcB{ryZm+sFn$WTk8Y)AKERd7B24&rV zebXcP_jxc1kx8a&bFTSvvu+xQ`=PG8cc6 zzu7jmvih@q{WGiY!D;B|_JTquTR`s6h&C{i-Men3hxcy5bVqZG^_R$0C{V^(s-HKU ziYOz+eW1R@s_0!mk6~9U=01f_8DqZZyHj8g9pCO}sC24^E4?z=uf9}c2y6Bg+ur#O zE7?0c(|kP`HF+yi!8Z*eKZX{va8wvN-w0bIdM9h{%d+x*0U5J{2F{S9hSp$?FJLlY z{y`TByr5CK$_x9|K565o8FGfYiHqQ#%4~2e-gCC;cisl&{uI}^LaLWLh2OdAxRaM1 z@1~k6tEjWZbVN>yMM#P@#0P4*b;uZa5au)ZRc7^7ySd~|G*98b<+&}+ye>^M*dyoG z6`cN?3TASl&P`94NwI$X__5m+5Y(K^7*2lRy-`5s2TdGE)!PsFritfAr5nr_=v!|4 znBM`tD)8gBv9lQPBcdUjjPO1;`yTW|a1oouX4`ndkW!vvzHuKQ+ zUHX{SE{~43R}H5Sw0!9NU%5EBfPr~7glsDKfGH3&S<_IW-XvejAJ!gpROQ6g0y0L& z-236o#@9@8U&Spdl&~7R5sNaSZHcQzSD8hZ?LnOENiHIl3H6>BtL~O;^6L7%?>||J zUq5y`5*WLILm7vCuK7dK&+e3Q2Fh^Q)&E?63yd=3r^KcY3>R}(8vX93)7vMfaMO+vU29XDLI zndki~6y0w3i07bDs<*q%N=fQ6Pyu zvI2+q!J9UetDt+NWr2>11(o1ACZ<|!spEoXeZ@k|gJ6#h2lDoJ+ODX-7kFC*LT8=! z!GHkjb|&*Cckfxj#A68bHxDV*G$BAD=XM?HNAkSv{jx)`@dvQB%QL=dgyK2kzteu; zzvKQB$jkiSIhs65#-?8=|4qw;vNMm-{tp0uiX_LP)0%8lG;oyeT(HODP8K!Bw-v$# zO&nOzYM(XBOS>L7f{s9APJzhifP&q{TGBgrOH8~ufHP^)EzjpF-za8!NS)SGIHvjJ z-SqFdfe{AzKVD}sPnStJTb#?9E=qXW^mcjC5d8H%{THseBMS6)C6A9J^kJksR?7R( zVqE)v;+!K<;i_mga!0+S3q&vFsd zb&hm4B5o*(A|9W?IzJKK>(l-hMpB1sdSwayjoyDY%2C$GPEFK#|Rs+_DF z8&nUcCIsGG&(<#|8Px=XqkrvMJO|06D~~iT_Bn?V?Hk|fWIFo}G5S(2xt<%*qXfg= z%YBLvOqTp?0laX9iTf`r8+Vc5wZ5u5Bq)=i%`jEIu$`DJS1vQPKa|&(yKT z&hP~LfNs+{e!rJ)VuQF*G(!AHl{l|B8wuhfRuAOrO{%LXO027w7q9hf*cd@g*wZFTx zue`e&isT#=c}uoWxBVZMX&qb`65m$d+ofKmOGv$r%rpoy2baBEB&2vlhv-M z53@B0PFxB1- zI6fCK_%c=_yoGuaGV6x*Sr9CxXxB18w~NP{L1N)`!+MSR+LvpT=0a4KPmbDc1%hYS z#3PKN)IG9uzZkrE($CQxX3nHg3jgTs_sYm`-}_`uNFDv++Tya@kp(}CoH*~x+^3BX6Hh|VHuy4Prq92DFQn2E{7;+~d&m>Hs`|gB>bzeW{ zM37q>YHiP7B_dhd%z9rHge#nWc{bfl>Xp==xxoy*)-)R$yz7ue$j$v-<6r4EfA2&E z`X*iCZ*-5PTkp&Hn#F9iqXR?k-bdYI6pa^WQxo^J2@Z$nJ?>$CO$9u6V?ztirVjtm z;W>V*Pq{k{yOTiJT?ZN6^oit3DV#iUjjset%_eL1haUPZa%c9}>N9gLI_0^1DqVH# z;Doa!Hp356GAC=!;jWSUL(yp&C$h=`7Z<)ZYX|m#?ElL&4e(#*X;hGkh@-Wy5eIs# z5!i7*?Wt*VgN4qU_W8(_LlPGaX+ofFhiRXL*LOxd6x;wnJgp-tkz3-yM#GLqD`A6B zT~GMFQwySK@7e*(b8+QeHQ>oyHz;2|{-V2FLE`pBFa zAT4rIqIrU?7rWQJC_kO1hz4wdSHU)h9c-SmzcwhQ352;1!>k0n6a-H}q0|Ay4d`i4 z32b1;c=^J5q(fOL71K7+awDI)T zW16uI9};iR>JxpA!{%7``U(**;Fw8;*BUt!W6+v0b?yX7{9LN_i)QtudQaa?6Cr zE0l2_<4@f8@F4s03(%vPxp&a3LYh=Nezp4uN!*B>^{8Yw_q|=ohgVAaL3&l0#Fpi} zNY~3qRX_W5hxa)B?qGNBT;>>RB1m*$Mdaz6c2@%52U2abstV9Ad!Uv)M(EjB%-8He zFTb-B`Q?iPi=fLB7`P)6jjElQc%eDn&Z?D`1Q50bI6HfsQbqqG)2SyIZ~-TdyVml( zvAEN&9SoRStTJFA1Sw0Y23`ouxpJ=Lp%(lY59)jw!*d*#D`ex8T3It>RPG&iLvk?c zJhU8uJa~6f*?&36D^LU}7i4IZ)|Qp9-DY=J&SR2%2}z5H&N}I|RF?o*W$wD$5gT(w zkIx=2WVMuefibR#zBoAr=B;hYE}pEW!nm>Zf%TioxB8;cJv&s*ZyNN6`U16)H{Wx) z@T(JvPfsyrvBf0jKj^m`pBZfQYc3kbPDT5@D7ivl*I$*L`53ovcAxYY z)F8ve2l>tK0nV4(1!=B>l_wL*PnyX1lI{%-y11S%L3+sx_{hiPOa7jHa3+|+rq~}l z%$xAdo7iLDgI?=sl(qaP)T(0>^BvGLwzl_8#-{8oAVZ&4d+cL~p0T<2%SdY&>TF$t z-#(wPSdMVCSI(ghw_eiIa*ug8)knNBGLhbJxmf3Drfc_q5%v~PRYYIk@LamPqy-cZ z1(a@35D)|j2|-fnMmpxwC8cyDB_SZ)9ZG|AcX!9V@D2a>dA{|mZ+-9k&RVXE=MKZn zK0AK<{PvuE=&YJgQ*F<$HGO9O62Yo=B!o{)!VXO)kr0<&8cUvLn!Qbd0LivLej*IxlEdn-Yl2p->b z#PKk@W6znnp9RH-h)CdVHal@(>l@6l#s4@iL&mrAv%JJ8Xej27?d#{T*xj~hntPIQ zkzhzEAzZDdA%{1uD$4fOp3gRD{it7}IQOU`z?|vuovy>&JI(np$$BItd8ki}`NE9M zb4ht?d`{bZ<6VZx-bgw_Xp%Hi*&ZTtSl1PgqTkZ%yBkG3@_gvjbYZ*Dy4D?WKPY-1 zVwF$NKL`j!k#u?JE%YjsH1rrpf}$NzOzky}6#W#^@d3nFrd3AXPZ|_h>AkE99}%7S zHiwm+PXr|WQFP4RC9=0Gaa_6Xo@S)A=?*Hs(8nA@Qsob?mx4GV?x(9V%vpB;=O8ygGa!y;;DJC?BtT+Y4+%S4-eGi!5GM$Ms;KjV%j ztC_38^9y*?>1nc0d%K~#;S9fX+@}@iaUsA}2!(3f(QO1CvxhVLOA5cfj(B$(&Q;#a zW?U(Rl}&#p03NvalYo#)^Flwo!Pl}TfUr*1CXIetnQ@w243hiXdghNsI61NkJYczb z7<*8-`_a9^ulBWXo@xKmv9WBCvwHo|?kvi=a6zx^ z>_T*h*$y_zg9yd-%(o9vU~e}6j`E2oDvnU&9YJiFw@Zgxqy!n{9%J&RBZjE)q7~^G zFdZ8R1nKdeah_aX+5KA?-zC`oUEJe>K5}fN5BY?5=UkQapRgfo$qi3^@V{v{7G05wOrPzLk~Rfv^o zkF};8EDY!}!=lC?A4mVvyp!WaE=qCK<)i6Bp>8gfPUDkiBLT0#zqzSs4J8?QTj=>4 z-hlAY3KIy_m&6`tpf!ZTIgg*j^TD1Nj%^`iRdcfy;u z4A~fH;FY7o+ASw1l~`)MQ@y$ zh69)jh*~%Y(@5Mss zBpZVGI$Y9!?xOo-oDBy|>~FE8SFm7oztOtg+eX!|CWogwal3_GE5XGMiI}{GX^9r- zztE`6+t^5BF+*V^?Emm@YEHak-9pijTh+jU(~+m7<*<1Raa1@+UGPy+An7`I2hV=*o~bC+XURPjJ$DTlLifnv3V%QKH=T$!irsFi9QO05O`sEl>V*daenX{&w$_)pA&W z@KnU{xhWs#YF2Mt*=`Y!w)eUAQ?W+-KCjf4-s%G)zjm3^Gkg*S$)6Hm&AT=ksD9X- zTj415a)*ZHLChq6R!u_N$ct^0!CcS)>)%)6Z9-B7N&N*z==T~tZwO>lPx`hRV*s#J z7QW}p=vY_k*=^H2_qd*_%+@gp39lUa*q(Kl3^_UZ{(#wcgSUGk@aVcfv@Dy_qojmR z-uIye3fho_Ma3)$@FQ<+;T2=B6Y?88tkC-$;^Umy_=??)X#hzl1e~T+KlcB9_Cr*x z#i)_1ev0`GQ8mPB$_>$bO3LKai{YfrM`7<#)N_5Mt6jzR@( zGOq@M1P|xa-Ky8PpUFnN@EA5vaofkaZCvYibIiM$V3el)&hl8^8MK*y*g*an3-)S> zjXp9c`};BQLXPRsRTLuquwe6{FPxzh)V;8X(;?c`E~fOa=V|f-=O7fM5#y=m zY1)c7Z;Xv;LgvUy2vs^onP*wxUWo!$Ph;LDDvPSq{XDrlEgEH9^o;Z^l%2P@)em@s zdmlRQ4JXG7)R<(5-e4~I_F)7u++CIX*3l%Lcm=Y#`=~H}Japdba1T6ve3e$AuaBWD zO&lTtJch8E`9&D-2~^x2e1O?tXe zP}$$6-A;qJR3YaITTh!cBfZAtK)wTxuV4ME!yZ;@z21CR$V?v)X?n*LX;3Njhe^3d znswTCPx51b2t6>t7?sf zLMl8Le_guDBuMk7B`EG;*ws+fT{%Mv-jtPd!J(##0R(>Tvu5a@4fS+^kHvPRj`l_KTT#}E=4|b2VR@|Sy+M{_q*6P%2u3zS zZ>+scfve2FxlMjU_Xt`V3P27QC+**74gOXeqVHt~mbQ|;pFs<8Iabi(OUs{cCFivU zkd=I{6A>x8?y0Ui1W(^KQ&>Ehxd)l0gxhLRlv%GUVEcL9G_KzcL3`oH*SPG-qX0M6 zgH==gODP%Ilf9I5Jm)*j;dv-Ho4v)wV&0OfWpUZDd9%szl?V%;6i1eu^m*u;#+dk6 z(g%3|#wL0(y-;iLTa)U!V$L-OBJ6278%&Lk9sa}of&U-sFS~qBn+~1|5uA+we+(dR z_xY53njH{R)Dh#RtQ5Y9-{J z^e*bd#;|oAwWj;vE$)a$NO!U{ zT9YEGQiAW1&d=bpdo?=8s_}9cxOocPyMz}Iu&&ZWGB2^*f%j15{=CV5QjnfOSEIjQ zK!oJ8`BR&#>&Ljh@zlLKnycJ?0N;L?xv~_Bb>v$jUOYkrEm_j~CcjxA_LpB`__fEx zGNi*E#$9`G3tAy_lipZA5qvKNy;HMho3}7rJLkKd^h6Z%dT4Ha51*=A5-x z3dDq^s|LjRW)<`%BF-6dV&*RmOLhB7gn7h}<-YI}$my{7c_F2jh5;EQ)%&Uqxl zqZU(wqhsIsNrPR6Jq44*F}LscaLFy`|2n2|k9RA4B-RuLjilOE4^S)B|S~j64|oPIuFfN|Hzsvebfhf6-2{ux(E5;F%#P0`W;A1e_|6j@u5QbnGPc-TMt_3r zZKQw>J;GJwUB^xJ0wM0OUDZ>@FrlWqXOH3CcQ^9;p4bv@GMa+~ZRh;fc*N<+0-X}; zqiF^*+#w5TABCB!ha6OfgTx6o>fAh*byY%!y}BZ{*7w*yFwoy5{7fwmBmJye4YDni5b07(x@kJ@a1olhxkE*H2yJC`w$XGgj1lQ~COE;zVxgknubc%r;bX63;D5TJZ>ND6q;T()|p9hIOWx_2%fNPQnyFrD>h2;!O{h_6`wiW z0mJn!DFDwK>MP52qiQDQg$Ou??|L22j@bObp~BSEFt!-A8vea|0j8hT{ysn(o447& z88JecOt?g+4%MTu=nY-%>L}(dv-%s%4M=x|FK46d>8fB0*Vg~2($F2~%@VWK-x{-s zzHHPoA!;z+%HJH$!rVt68Btr>?$f^s`%I26&3&b?-L14=T%)BiEJ-B`U4&$Pw{jCH zNj%e%iHbHXvh)EPRGNJ;J43cr&?6R<6l*!u6!+@wHyrqf$pM_EjDOlc~oEBrNXQW<#WvpY!gl6?f;~@-Esuf2?@Z?e7Rp8Ct4kOzsLA;H;R4~( z;;UDNc?Yvm{d=Nfc4Y3=Ygb-5>bRFAOp4k;aeU1!`95U=T;Sh z&87m<2yZOPTqWM?RBjhj-;R>5ULCf*N{?0{|3S4ZY0W3Wf}zgn9yL<$M{ru{ZRAW} zx0f4P?p0((;jmgFZxuSZT0`~NN8=no81ED3XIDr8ei5C!1UnmxQ8Go`YZPc=jV;Lh zgCAR-Oqmf7<+Y znIm?yz`oP%V?gQPKwA6ZWOvQ#Ceq}JB&rnjvO)69?mt*4q`wwS`Hu6Eq?~2*>(a0u zzFdcG=jW!C#r1;cIoKKj$%Pne+z8#-tmKvgl+k;Z-URot8X6^f3Ghb z4sH|@^bjWWd4-vwuZp7dHCS3Am^r;4$(=5i$|_A%f|8ID13#$41h}!DS|W+jI@(si z9p|)!sPyoX88>Qcg_jBBU#%hze-&6fl;z+2LJ=Y8f!&?>50j;C(^l1#_2eCna63_L zUeyFkcX=#facm6JcXMUmgo20aQ(8T}sV~R4{_GdbIwHu1!qqzr4p@&Lco71(*tj>T zW>1W4E#7>|dC5|}5gYPnuax{q|0NlIE@+n5GuB!fgHXtjddVZ96Yj?miNgfPP|`lR zNGBIqIvEwLQGL3sEq5p{^CJ22(ab?m02{Y;h2zBM4;B2@a?y|e$(ApKbgx#(i}PyV*-hUiq^>_t#B>G zw?ij;Ctt^)uE=OyRhnLoFD|=0b@Zw~jbFaoXiL%MVDHq<@Hu?6DT{#QYqqiF!~7^G zkS&8=gD7o}9zN_&Y>xZ=RYf7GEV$Qfx$?xS-eloJ#ewsWFMHb-_P?^pWK$ZsA?s|i z*)We*hq-^^3YSJ+h)W>$)CovLoQatdb`6?O&hYO#%a-G<%r~|kX2bp@(l>h9Qv_Pt z_L-vXh>V-QuiZGTRuj5B@bdm~KKlH32U2Rdu&7V5!@G*wGA|^cq=HV<9z?w=j&FTG zYj&vpg%;?W6_j(8w(9rG-kiT;$a>zXEod4>)jBM|He{`BEZ(tL17)#98f|VN2iLR^i>%2*o ztY>(&Mx-(OACmX5WHj4sgkVp+DP4=Z5< z{Y%Fz97T0dLWfR05X4ewG$#*QRxe-7XfdQWzx(tB{__!Lc$wOC;Gi0_bDxTe4IA-D zJ+qB)O;&&Si&1x%mtb%q>WGp)Nkpu}DwdUn9od?gLVOI<2<>i>9b8JiL~J{F4%dM? zoGqCo|8DAxS(dRZoNkD`@m2Wb^9|}*%&v}uWZd~^q(D1OQfl+ z)cSEgttZqxLh{N!Pzc?!4jgU-K{$4YVBp|&VxYZ|^9Q9`f1A=RY zQ$|hHuFjo3r+%PNaR(cy8DU485!3^{lO{^5`?6{izbc%4K1I}}j;qfXbY z7s-P1HlPxhMQw&qs|$0z6u0yi8rMo@(9s1r*gy!x{^!u*Sx?4RlKStX73UpVsqcRs zZDIjTaB{N$I`-MgU_}}Kb=WBz^20nCMNX?;-_6;Gp#S#~(Cqsc{qT$+bJl0~oz0#>P{5c;hJv{C6KApJx^M!aWcRW_HxJ@yd z`$slDoBzKTWcZG4aBawnLAV}|Yur}bPhwb~7;>p90=U|Kt_0tP`2;*)nw3U+kenMs zUnd$D{3a*T6u5$C*80^}7L3zmo?t%xI@SB^_jAJv9X^5`;jgVBv4f$)0J?}PECDs+ z)dB#nru0!*n~DI{$^1rpF_vRg&vTO^ueU`cS^PcPhS+QE|zT=bQ=XO!_muL|DW|9Xx^J+HI(hRD7| zp5Wl%sK&Xc_a`JvfZ{-gW{F-Kc)nF=V&_2K%Hoctfq*vK;gqws!V#KQev0tFXzv3u z3`z(E{*bzw+_B+ZOj{DyzkNY|3{6wY>%y*t*s;my%J``upK67LG;lZ^MyD}5?A}Vi zM*=yGlE6S>KnSps2e`gsZ_FYJiO1t95jwD%E6pt3!Y=7Ub3*UMJ@CgPYtxw=_=V=S zd`n!G&%Fx5+`;U$)vRWK>smaiTee-EYQ0~L8T~j6tsIJWif9Wk#+$ISi4R$8&6qQv zm;JUxOzoPQngDo5hxFymjo&zok&BD)!>{|Tz}xCl{Gob=sh-z&W~tW9tT)&s&87n> z#8u{%AE1^iFi`S5+F*NksBvH(v(f#mt>As(Czm}+@8$M>Jiw;Wo@i@pOR)Ni7FgU; zPVb6(wgkYrd^MN_1*x2S+kf-ZXdTCSN;6JL{2@)qaewgr@!K{{eXjrl@JmbV5J%fJ zwGCZFoTT$PDXzrPlJBg~hNq9hgeyoixXTcL?sd^-3dXqY@oN*54x~pKL}+V2>oI>i zv{CK8#c<)VHG!L8rlqB?cX{3j^)R{liH$NRJ zVcqJS|3E|O1&L}1=6iSnJHRDzW&pIZ!DhMUG?ez+(x#Th2Mt;yf2Fau5QUi{;NLt+ zTA{WuJ$D>Q^XG_iEVoHZJolcZO4LK&he*EwRrqSxPn9fg%kigxXGJ8rHyKjrw-Gw@ z(0+{`7avw>-v%@{H#0h9?~Isn@3E%;LI0(}LDJ0PZa%lLpf4Ac(4^*_58TTM>M(7$ z-uGbX8rm8$3?V6Qa6qoJ@c`6c+_I5uecw|5toc{^V=92lU#nr}crT7{z4Hfc)O31M zS_Er)BK-99OHB*;R-bzU-d_C634|xPEyu5aVum(~OmL4j?ow0YOWg^MYu$-#I*W%J zj)w-@<~KhsEm&=8!p343qH~cp{#PBm&|2SIMISusbr5+b99$U zB@UNC0MBj7q0=&m+Aom|OX6^%j`iQ;>S$wYa*f$5$gqCEIW&rhss_^~^j#5_yMj7_ zyN4GS-J#?hiw6gh(02P$i%`E~>>cPVU@fqx(|h^wrn%6Jh;i!m%gEh4R#XQPINH?e z&JIWR&5)Sn%Y+d>aP=ETnTH?Yg}TcvGRG1>%lqlBclvpQ)@);IQ2CmtmhpMeqd^&) zWew=@fyHl|p@9|WY}%a~m`YDbU<*!$PBL61#ctJW zbO#?YF}(~%sQS;2@5Q%;>c7Fwyzw(g$NPgn&R^FJ3x@QM=Y67QHdl^+$-I_veQcQka3qkROoEhWy*LOv~c(F(H_>Y2iW6xadsB_ zag_lW>46u$IpQbrQia95$4;p=$|dC?HUEsyArggDeU6wtMTwo=#RTFPCSZ$>@TpeY z_~N4r_$c9eTecIN9iIu^^D~-zL*Wh$T-WOjS_Y*wYk72`?M64PrR5gkQ!&`;3p$_` z^Xpy*IWU>obvIqr>Qj9V7It;{J627@xG~;-c?sdq+IcZ(@=N^S&*Sp*t*tYqPSr-L^`{m{Ls5QY4D1BE63<%1L zVmDO@#V2qW)>>LHAz&qz7(S6`UD1RU*xd@GQ(E-Oi2!6rN@)HF6L_^wu-nJxkpAaO zDZkbw1kiT~lh8mGV$Yz>p1)SwQ`1yBtqTjITg(j7Eq2YlorE-cS|vZOtMBJZCi0Yh z!{uPUk&4eEhK=>|-mY^?EIiw=blMV-EXP{*3PuT5X-$q8tle^KS8ywj{eWQrkJR{` zx>j+i-~93Mu|W|x4Vh^4@v9xR!N za6vGafB6cAC$SyIvIBt*iq@!|H#=1tcN0`21d^PtBHA||ZSP1ml;{9ssOc6OT)L5n z76fkVdLNR&*_0iDK z{)r;vmno?jR@SWU>aZbgYeDanE9Lr5K~Sp$x32s>;@d8R5G@t~zq**5va;-x*FPF6 z$i$jHvQ$(%-QWfg6>63%NpkdQ zd^NW}g_q})pVaYrW|Jw)KY`uOaOFTlsBfpIg=Fabt(~pg6d@opCOM(eqJzBr z!v%PX`0A_Da|2(o?c3U;wM}l2AkP+~Aob-aspk>65Q})vcfLX>pDYsR%s1F$)xmJ%e~MiDH*WyW)}ueEog6G%`9^3o=pyw7 zo6A?iqouTDQ#hRx;b6lkKH_Y1%A@EbkIvl^rX>J+`-5aWDBf_el6&vD4*Fu28$!`+ z=8X82T6#KrCIKKaY3@G{p3@$_6u@jCoP1$c8)eD|v=EKuMJS`ep*)P3t2`ny=FxM^ z_hiU$eeG~)2>nJLZ|0aZa{Y2JrsO@~@1DoI8N!swf|5@Mh&Ftxc?;gr`0b&|r01Dg#1}R`q5XGs zi`f1(G3#zmH$febIVWB$wrh|598j9Xyp$t5jwqM?Jo`+F$H^I=Vxb~5GIL=j}Ic} z(7<{*xv;>1y5J%CW#56Mb*|3om7N`TSy`Fg(Xxy#SnrHq@4WX?LxaNC&u{pbjz9yX zN334j*9|ZO%dIL3AwpAAQ{B1_Q{=Ey9)S-ndIlLKC1vKnS5>GjISTQMySuYYU{+4? zdxgW2U@*U{Gt$;h+~fG_*udjBS$uw6ru6yE-}Q*Sjvdvw&JU4$48=7!j`H5d=>_kR zdMTXX$B5&e5Z9s4OjYDIombNWb~OlmD`6g-R@wFhd*g=R>yZ8 zZD*-HC}1t>;VbDG^VE5@8A<`=#mPT4wY6$ekE|tzjT<&+Q&Uq_w6)m_P*b4!=>gx! z|JHh-s;wOoK_?PwrL3sP`@}o>#8}Ph*<9D0{7qb2f&m@M;><`846xzkv3nUG!BBFG z#V>Du54n#sB2OqF44ReS09! zJ7z<;_;w>Hp?g|J%Ij_+9 z^Tsa>En$etJ~WCE-SHi|m$hv2{uj{F#$>BiSiLvtLglEuj*$I?ZDwc~Ip@CE#*y@5cpHTa z#bXvnr%A)KfV#T+;uR(MdZn|Uv?h!)6b3XuQ>^MaxZD0`Pm4YN=Z~CW{d0XHY;5cw zPWf0EaAgT3SxNJ)@YBw)WL7(wKwB1P1aj@LB2H;5P5h?h61d zmz>R+rZkJ)DK|^|nNnw0FGXkEgfQGt)~;^{9f{E)XxY3nev9(O1?9Zs#_sC6FF|wT zgRR~!G@1Lvj{_>F4GS{@dN{6_GX4{dde9f2TuB+I-o$ra+nvy(Yup;?(PVqpv;`%L zQcXH^T#AFn-9=ulhqpU1zY{7y5nuvzbmu=Jas6=^(@l?G3UbiNIqhPq$5vim3CM&8oTB_j`x8q;7k-F89#OURdbP$O=@a1C01H@I$emyG7UXG7) z2DE-Yn=#bNrtDPRe@yLKO%>J_IX3a+{Ij%pY#C^5O`k3Fs9bkEV^q?x2o@wP*-X=okhovm#yMv(#_w$_fzsJ z5U=%csr|R(hLWKOwvaJ2!7c6WS*_t^TXhMF`O=gBo`8emF6 z>j2Pz(f(|$FCmQTjQJ|+^Nx0}w1>9V(aq_&3IJyn-b2Tp$ohs=s`(zL=Z({0!EswP zWe4#h?ls%7GUe6ak;^nLoU*-8;|8=FXY-XWCBZzwXBKX&SMG=rGrGwsJ>PiqCLU*~`@((It+*r)xvPImgwZc?!njNSNn+ed$YD3-~Eu6Az{3+-Q`+ayR z2i}ISRbOw#7wJzfPbso^~jR6hOn!0F!U5z%!Hr3Dz*)lXd@vJhRro|E|<=~RH#>5_u zQ7I{3DfPJh0X^3xbSX4?LC`K^I24mt*c<9r!z3k_jt%TgSWD*(=xK2H!t_QLIE#xt zP2mz$g0 zkQr|oJsKte?QT~y@z)oZDyiJSERPhLRAhrNt; zyBpWY5$dAD*HDTC?E(ldZV@PBMUNZ>B?KfqQ(sUt%{P3=!a9m$Zt)_aQ}Dg}PW1Z{ z9d7I733Ln(6YEjCq=BBfIwT5rW4%x4^%5matppxj)at4XyEnsCpT?u@V2g<8ZPioq+&0oVGI z&@k%DuLfS-*L_PSzuxf$1PDJCQq*ybPD~7W_$n|1+S%=|EHW_>fk-n|+GrgcBZodR z3kq;rTfx@J$`cVh8vZ`BQQn6SVX49%iQ~cb@ZCDQ%p-8osvD>g``utOCk(AV)j*vN zi;IijzK+#N>g!WP!#EDjhK9Hv^QNu*hnNJoR_mO00-;`jOMT{gKwXV+Ypvf=p1wm{ ztse)}PgF%)C4eXI&WldFNq(F!&g4?)$pIVED~Z!M}7tRg{!pOX$iB$n?9% znzO}1BWK;wcH1kcwCqcrC6#5$P7(y~1+jKgIcdD-2xqs0Ty&Lr-FF$nv3y`2S1a^e zcvd|O0r_(m{L|y=o`okZfv@*4qrK^&en5d@MEdOe#ffo2 zvaePzbW($e&dx?^+UH&w*WYtHGY7z;H6_AW@zL#>S9^40k`4W)&B0ehUGL$T>&vxm z_`yIdlO$J04jB!x%DCcI>=V~7b{3_5Hvg#U>5}d!6apMVf@lDPy!%x} z!~>6)V*+&ylq9rJ#67#>5Vw3Y$q#XupWd@`*?26h$_!o>c6AmjYkHTeY3CE{(^J== zYB|xn_V`c^p@rlT_Q)=UD0zf?emhg~LSl?s)7jO98^$D46KJ^}dHfRl>bnXb~lfhb$1 z1ZKr}FPWdwZQUW-ix$B5OY!K>&J72jy2bE3M(lsW&Y0p~;6ijhxsw-%q)1?Pi?}OL z2C#P4Pg{8u=-1?2D^DFHm0!*BJQA3&D6v*J>iY)D3g!3b9{;NKnt~pCW4%DiEr6i^ znLO2-YE-jxElYBFudEw;;A`kYz4nMH3dWJ862t6Yr^bJeM2L=er^@ds#?X7p^1rSk z=$^S*>p@iFe;-;r zCW-%(N&N7CViLjsNhM}t8Qk-Sq@=_G*Hy1o82<1Nnpr{v0UmTRK(f!kzxt{j(MHSq zIGaL)`Y%c2o$VtV2G9OXQK~ujFW-}>y>Xm28fdZ|;p;|(U)p0nme<^Kd(h`6=D?gb zaV8sHS*|VTle9!%-?qj#VFPG+;1E$`g41|&cL4rINu{(7dUBpZp7}>Rdt<}=9OaI0 zo1M0lK-tMF-P`!txbU4L=~Xtw`ORMc5cz`#AwdkZPzjZWaeFpt!tvNso0AjEqPlZ) zV`=CHe4TRSCR~Bdz)94s+76+G{QLWhj*kA}T;Vk}(iyD9o%GMutsT_Zv%#rS`*$&} z((rt|!Abd7_&u5V-PzCINl4ETeMcq)NG5tcr1v#Eyb-IV_V*@dAKtJ(uhS65>53+xKXyHXem@4c3&k{inDEYQPYz{yl&>FtXpPk zYB%+}a90?**X=v^bdN6QB%&@|(stg!_tJ0|D2oPx#o8_OvTfuRbIkEb}yJwmu#P*eaJtADq>WAaCA1a zk}WrSwQe$y4nP$#?|yIu69_bVxr;Ri^3jic?Mqg>Fd@{7$$0KQ0 z2A^H{cJBH?O;?}uKyIM0(5DM!Y>$9Hm$JxF$P1 zUd_NL$ybK8W1u)WImL;;|K2j)yci2i&dh|xeY(p%r8jB3=;wsvo?qMj?aVqv8hgM1 zKhdkbuxnJQ{bQn5mP3=~;~p6xI5JWe5)|mh!m`>tiXWl6>BB5Z%Ag@ zhz2a+_wV07kk>!=*CzBqI)GClt6@|RZ0Mf?Mc%Qp^7B(XiG8xCN7Cwkl>B-^+lHMB z65KMRBHkv@F7_rrlnoev=qHD5>7Stj2uD;d67$p!uFtrHy9|$m4Rjttk9`43$4eZl z8M5)}%?Ep1b9&z(ONU^<<)1uADYX+5haeY0M9lkzY#tLzZWG1+t*bp`+rCnJBL*;D zSJnb>W@XWkCMhYcsxQyyXDFX;6a5We7xq~Fp02tLiTK;cCmob@HwKzzV#i_d>7K6` zB?u;iKkAxabe4^`)cCMf!JD1!ZRuWU6gsEs<|^^5;VB91+>w+<`wJaJQHyTi`nv%P z#ibvK`$89l$}cylp|Y9nm>9B-t}YD$CoAZ1dh-Scf_PAoy6O1SWYX56OXTT4Wf-tB z*Ogxt3o_T`vbg6gyXagA%(_y+v(cmS`0l$(HSIB*8=@bzj9&mbF z`dMy>4kK#x&7*7>;OWl;Jt*67?6RE<8&p7dFC`{sW@7$B7%j%3llB8ha`zQK!SKfe zR|6(LR$07ZSjz$&Jfysbzo6o(Nxo8$>dhC#WjB=3fBI~KlYYVjhrA-wkyYV4+1KF8 z+B4}|!gfYq81E+4-w;T6%}8&pRc4{1%QIF%2;)rdZ?FbSZdpR|+1}n>6dZ*`>Vq%& z?{Iwr&pjgSUdn`W0U1o4lxfT*1;&j`HIBk<< z-$a{fxd@F&@p&U$lPj8^f7?CBMM;lRn|E>4oz+Sp@KO?$x|J)N84RyEOX$aH%yo5a z6=7rNKn0{0?`zYZQ$ijspo)b=jF0~E!$O=tBL|kX&wWHP%a~~aZw>FIN4A9AyJ+7e zr3!{zAPh)e7WhwD@S8wL4dpv!B*lV=;hU~HkD#dtMp{*tj=H+7?DQ$N%+ZB0$ztad zL6yODL53p4cQXOP9-lTKN6U@kX<7mqKm?t#^&+!S=|&M@ytointGodBjVeW)=K{Lb zJkRfA(2~{jMKy{(ZJp04v9nfnXAqBzcoBQlv_6K1diLdys&5Rmx;lwIp)rh4k)kx^ zT%VW1UU~IdG#4E9qNv^B6Qg^0)yyXAJa6ii23m$m7<2pwVHlTKb{Y%uN4G65*0;+F zTlbjZ^73+Bgq}Wn^eA(}>td-dUybUy z5gMR}^;aHk4%=!q*^7&E)rR3e-roJRncbUbvekxc&d50)c}kN$)Z ziwC_3S^sTM<-=dY^^@5 zQW9ThNvRoeLfyF`GYKSDh`m4ktZb~u~NbU-xZfvph^dBChUM;5_sH=%5cmAf6I8Tb-eDj}34Ml(J z<1~S;v~uy;-tT^P*MoSpf*87pe3aC*#rVqDfFD(lVpy;LJgDeH2C6!9a`Ipo3a6 zP(FvdKsLg5*hqxrdwq{g!fA!d+!va>E@I|X1HH)x=3ExMCV8FxEbOOQXGI>`{ylDD z{nM2{ljjIEL-(yfWueSgX9XI6H&F|H0F-WqjlBR8$-Qd`ms<++@E&& zH$G39u96x%O9ocY*iwGo%uSgDWUfA@8sx#?!_x9{x zoco84M|!;<%h+p?SHhnju0vO9lqp5O>DNGCc0X9!T>7Nd`~|<}tV_z%0R`&<`)_lr${lVDUhrB7lMZKuTAq|q{Lqv2^YimD@%RP+uHkCvmj{(NBC!YnwL(` z{6s!<`8E@bN%EUWh=|Om2sr}G<@54;@oMN;@Ijy0xZ9*UFJVl;fg<=5&D5JAFQdfr z7j#hh>F7`PwiVFfng{VeUhPbir_Udrm|;``|3u+H))_lP@Bqj2fq zz;;W`mRRei-ePu$$5aSI$)T-R;o5lrI{xtZ+bsoHxnL#KVy(=&QuIkDo~sQ8P@Z(57jq93z7Csd!M3}jFH8G2{C{Q2K+V4C!1SW%ZJUg*;e&I2u!Xo=G8cLTC zl~8(yBAJ(+ogLP7oNPUJn>(p-i%&^MhwpqG0XVd6RT(uuvZedn5N z+{4KQ!b-zCN&9r}zU_bHu9j359FeHpAY=?-KsQ8&Qj@j?!Oahol|2?`h+C$f+(O&` zFcHbT)#$AhV_W819yc!NG*746o8nZuktXUM!AhLX2;n|;@;%5u#q|2iGaNaS`KPOW2p+l(<6d;(SrOk)pe>;U@sbzmr(thym!xUJoBez)! zX^8ZvPuYh|I@qD!tSl^lOe_{3_IZ$a!d+XKt-tf!zj(8WrfSNzozooFgF;}wYe19T z&_K(_$5-Qd^#b4(BE|r8n>-&t18iJe)r;EIv_;5x4vwMi34!0XWA+tFNJ>xd4;;d#=z2zIL^b(CHadhX zKa^21P4>t6q2jGA{2@#}jb1VCRb8*RSKSlZX&*M=c4nlF#d17&7nJ8t_7kCh@c;Dn7En=r@xSO9x;vCE5u_FA zZbU&s=|(^S>5c;kN=T}J0s^8S3eq7tG}0m6-O|l4ck{ddd*55@t@T*57N_UTckgd~ zzOkFf{jLNWC(sMkcE7tmP`h}!Dm#tIKK>O4!51TfZy8cvl3(t|_OLmP`hka5s;_`@&nsWWKphc2?r2njT4g)3>i* zBQ}tnXnR$`Cm`k?YikVO`S{bGBZbBS3QgE}w} zohB=Y-T1>*il|xDPLHwrv%FPJVDUiw-{)R~kpgOhW7RBQBIP0Bvy=>K6`;ATpBz`} z*@YFv%YQMKAdk8~=0NcMUW+D9GYN%L9)*xNwLYj>puGs1J<6Zz?lWPW$ugUPgK5y{f56K7pDX4#yCUwtC zNNiEZHkfK(%oEHEjBtdmGc$j{Bv_{pwrqYqj|{<7ll;i%XotqP@%pp!#q7K$|BBTX zZ1S5{|INhgFSc&yY%LBAZP*AE*`Lxx(I zoz{P0#@zGe6bJ{=A*HXMwoJ8 zDeO)L;l-<@rI(lXk?To$m^A?N(3ZfwNJ$Ocy6A2`nZKCTyzfJ$sSttlrZ_IL;0eQ{ z@z%ZoTsg6w@}XEO>o&(MVo8*cMePKpq}*H6%Ja&mH!iTEm+&XGAT1yVO-Ve}w67_*(|qWf82dg9aNW?~pw^l!~^igc^~Qx`W3 z2Bo1OxlkU;eRAfaB_jjLUZq*-ARH6&;``DYf(40-gc%LUx(R1oJmQoolaAL%G~O401Y>( zC#HJKvj^?B>^i9Tp8#jOwElO|d~H+#sT4rS*6wwjv;~Ze-M>e@wP<>0@BdvTDDnTP z5`2|CqA58cCuX?0XqtC=>+6@~@CmqNXi+4IZBIWtgb&eUz$u-Pr>!fa=sT9 z;?QI7Ng>> zwE}H=R8MZO+;|nxYlb^vm$xQ>jILfAUHS4~K_8NI_gQu$6<7#mntXaYJ;B`j=JQ;E zNL$#Ny^$jm!h6-8FQipg{5S3u&rfBx&#ftQ*0>$&oABbG*N?9jB+NylAK0S)jw4u< z+`he<1VvB1_!x2Fk6_4WfZ=aD`f~(iXY)Kf_A!?VNFD&gOM{gxuX|?fsW#Bi4G&6HWd8n6P?sgZt6kS z7Y@O*{BabqzGELr5${e>Pgg_i?tiP&GUxf-@sAkj*kHHt=NEZ&^-kxqXu*pZH_4{B zFF`%ZO^&8ml~hT`m>;~qTsj)rRZipUR%*ekZE?(TKr{XEJFd*BGG@L}gEP2k!~gYF zs=@r77!`bS3w>M{YSDNzBYp~`&KR?w#LR>e#aUh6$H{*-p@bvMOATw5t4e1rE4v6& z{pbHm^p-%eS+twsb6NjhES?~4BS1c8m|kdV#jSn^tJ4APtaJBnNg2fQz7CTv3bt53 z$`JwnJA;X#lOBV{!JnQZc&=W5XH}Y`=&&tNhomwmJmKY`=% zU3-qu(sGz!QVoleJC?QS0&)K}+>SZBAr;o*S`lb%@BqSmL|EapJnMo+EsJuX57}SK z?r~fluQkU+S!fW-Iy8L>BqtaB^v-&n$)SZVuqVp(TqtSfH3e&(j^4kdHjh<>U-+o!_Kv&_iWE z<16C-&i25XEk$tU-UFdQYFbvmG4bqKzUTh#1ap&4^b{0qQV3i~Qc}{!*4FCGVU)~^ z-cWFaH@K^-Yv6B*xEj|xh|_?TXsimd&8_~Kmq)JTq#?j}D=0OTXB_5ti zUcllmT6h-!6XWu&VJia0Z@PqMQ)@IWy(4b_R&nlA)bkG~9qD6mjRq9zl5><)Hp_-F z#sIg|wHAgd=o(nt)O<^*iE-o@qcW(GyIYP5eimRsQUgPq4fWp9Qz)O?33Cmh;Q#)uD3K%o@6HKT)c!q-%@s|2*V`;NGZ*!{a+I zw)5Se!lpA1x_%3m$!wzW za0Xi?AL~FX@(FK(X84J^iJ2KwKw#iNz3zN)Goa{W#FDJ3usfMW{L2oA*T>WUf^@Bt z7{Kz%5|Gv2CIF`!)hizxe;kByByGmu(8jxeg=^VWP(i|he;VBr6TAQw^WJy|Xy8LS2 z+t){mKp-MOl3i(^Omtcr!~D@!X&(TlD8S*}gM(&pk>Pk>iI^w%>iT+QZLJi?B)Vy! z+$^nHuR=tF)ff#%LZbp54&=rwu#{3RZ(xzvi1=_ytDT^52O)%&keZwnjKIWU5#WEro5g&PaogP-|@+% z#i-uptk|K#nT=OFJ-ivfQ~0HRMrYOj#r~a*&A@Y_`ek~G$m4Xl3EE{$XWTiYnD|Pq zH*f#VcSz?Eex$Lgs;ZczWb^pA;n>ygpe4h0ZXigi`m*>iX51}U{qomjBH}65C_t^- zW3M7V_C-r7J9v+?o+n5dUQ$M&hLi8v&R)r%5XxlY37)C(4>(gaK=GeHMXd`oyxklv zw4T&ApI-z8v;pX7<1W;ZV_00T2U*Y_Eylop9PZJ94XK?Gb6cu z`*zl&Cr_w>!vR6%<>g|2hg^5>-Yv3H%I}%%Q&>3JYiFjdKwTd6J^neodw3XTlAXy* zh2rPtmIskCO!N2e-*pZuid?m`C8BL)0sfdSf8sLIL7k(czkh@lq+ zD{EWBNnAzaKjfCE#oNees zwQ?jxL}5RF{>*1<)Y(gY_wE(Q@wPnOo$m)4uq%lVkC5=)GphFnKtK=@5;iCC8E5u% zgWS{RV&_>IR_qlpBFRrUQWzoCLta-oJFWX(0zmtZz;CC!G8DkBUy>M%=LCc{*86ID zK3ZFiqGMbS?W`Ja|AC;VhnN9=YI3w69JidKR3B{rM@n@d*?*ZmY&~>s<_)mTu|BV| ztnw3j5)t5i@-pryQrYLL9#g|f%>3LO1SarQRU=^l_&_20i(AT6rELhpb`KD+a8gnT#j-up@i=Vk=a zLAxO4m)*UIc<2o?WUHFDtPkbRZ)`*b!{C;h8te8CrXpwTyL)@L(tiHrQHf=UoSHHT zK%-9jUz8hsh-ZCq^1_D9EM}?jy6);^7LEh?Umn{N)F2%UgdiwDTul7hF7rbT^=6Su zhwUx48=t=IZa>{y6gtd$13^beM`GUp(!%>XJfz4QD4$n$l3A^iKpjVLZHV~-57u6? zPc1=1i$2~!AyAb-hc;90N%DF1^5Kt@-WZhPIw#y6aES^Y3=$tF-5oG5skDp4tgiUc zT*y?ptCpAU!d#Tc>R4vLUnIj~Oc|#?pP(aox#3D^YCMdeF8BK^7|Z$5qZqPfPY(~J zm7n3Er{4neSwwIF3=dObW3x~M01o9+|3Tqqb*;o$dbHislg9A|8CpTe0!vaO@kf}H z`34!ZuZ|M)Kj!s2`A4j;uiw(%&d$dN(l7@;Ubx=(ynRetfq=FI9NF`A>Er?eqyUCK zP~+{KChb3BB{D@!O-;QvQO*O+)$G(O`ud7Pb02PFXv5x{G#i_nmS9l(f}}z|_z&)O zQiedmz{0h$v0)JuBr~n?QdU+DZ*>&J-U@E$?0f(r|Gc|hd^?v0^uTcO^eq3I_mKg- zPFPr&g_b6t=4UB<n|BY?ZnMMU;v6zGHtH-&5(VuK$z-iY|z}v`t@;O<}aA+<&jpH;n z@Kz9!(&Tc)Uy+i!io1#tmx*zX=^#-6XA_i;E5~K;WCe~9-e8_!diG7(C%@}a8L2-) zU)Nj2FDvyO7=h|NFKMJt*`6XB#DRl^82sD zy!#Wo>0gv*87T1;euMIWNU+&F{5QSB!Ch7}UERXhLnuu|LcE6;=VC10745-dHiZ!;K#)G&4{eYyg&~dw)6G#7= zc$R@|n{e%m!ouDihEABPV$SeWlH$$QFKNzJ&7!!1fm4DHA84uoVQ=^WNw`UHxIQT~blF~plNGs@fX#agUz$W`qs>t_MqGazU3OIo5SXcw+NbJKIMfYMcq736YKLsoL!wb2xKZDYB{TYg8p0xr zE4kR7_E8Ee?$_gYbz4YLFG&`G3q;T$DdZ#ENo`KdOad9~uPyorN5K>9j96UB2n$|x zWtCj(gxcuI0GB?<6=bH}8{VA{)#|XT=-z~7{pYfdnAXa>70JpRu~JM2kBffE6+XLk zEktiw?z;=8Lb1%K`i;rT*NuIvG_N0ewhlSZyvc|?3ahJ=zK-U^=l!~IcbFRUw)lOt zrAX9YO@Dv?OOO29pMwr$h(2x*0J(j7Twoaip3;NH^pQM$^u*Bcrh=lPkjL6%2o6rB zH79t!uq$(ezLE?rS;hEL^k7f!)L`H$OYsexurO74c({l$zLn+L;HzD=Y*AzLqphK68j#VJEs5 z4h{n~y5ux`Mq!DEVq1Yno)8jFl)ZX>z$nLUGc==buBz_GaD93vJ?gQsaddLdqh?G} zscT`h<{`lB0t#e)2U5$86AhYP#)Y_`NCio{33?SIV21nTF z?xcxbiffu5(u{8`EQEqvOHl`+xEzk~*SMf>ApRmGmP%u}DQpWzq}K=@-D5GoKq#sU zP&6!I=EZmjbUcS{$cw0F_{5X0oufAzlQljVQ>E!Jtck|nk?v2d(3Nzz9KkCZP5Pri zpmeS2_A=jtbR(i}w3vp-eHX*e8`_zl(5^}GJE`VatZXWA2seVQx$F8*) zqoYGkT^%1nde4fqOb=!P8j&z`%C|2$g1zg5(Di9x?miAgRo?=IqbwKyHMzLh7_n}C zP3*H0K03d!z?P3Idv=rG3?y!qlr#vHlo>Hdc;G>^tVW|hC?z=UvP(*I#`tfOFiM00 zJ(f^VCanSgEZ-gfh~u}V!H#-^;~N>YJAP|e3Hx+l&&`KwCIz*vVU%s>K&`MfHBfrL zfnW8)@Cr0??fj+aJaA;oUcaS_5LeWa8uL7sv>eT<%>O0%#4A(&B?$>h(*;1xEG-z6 z!}AJ?jT&>1GrX{}Rz{E)($ivMXtZb#H?z8$&J*_ZRFFU}b?}sY5AMHlZQ{;cO(jnz z_RBNx6(|Bm1vy88+v^Ue=;K~lk*I_2#aYkVEsPow+w|%3=(=cpThdTc>sPM$SPB&E z=9DeWY6X4;6Ck+uAV47jGgf(lj9id4sxv|43Ga^zRb6h{EGBNdAu^Wt7zD-QY5|%s zQF#yD?z!65(S!%>tJSL%sh#?JOlX3OuF@UV5?i~K^rPCo?t6XS8NM(yJE3;Fw)j`? zV^53J!xl=d%*smIKB)sD2zk(c(*L9gfv$C7HOlD;UL8cUY`+=y!LhK~>(5g3u{NE4 zUr&2_jwvS}BDJsH7#aY%<$gCTwJnB^LPIf38iE+5rKPLC%f|KH_I|m(z5NVBl#0Oe zY=7AWeVE%Z)4&{3F5BcLm#oXtQ07rHpZz!P8*+cSL&g>3U*{-!Rlv<$tqj}aOmf)( z8Rp$OpU+N9nHKfcocewz_M)B91yv(dEtmPiB2q?^Jwa8`JzF2DK4S&jqJ-|kRYNI7 zmqLDR+huREMPUfMs-CMXy- zgui;Nks+6&)%sl1m3mtL?;r~dL6d=7g-fmuKjV^vM4Bt6CI*KWZW6ILMgs5&l zhVmn!xEZtXgCqUyCve>!GCg(c-m~AL$&#vN-Xn{okZ1a7^}z|2GrP2ltJb@au>9uv z;J#JsakKM#A0L9X(DK)5;fG}(i=dYzN-LI!J_FL1+oE-+XG0dSLoy~jb~AW#`}M`R zl&SQg&s5(Etp2i+9vnqZEI%Hbb8c8~T~t14Lnq>seQc$e$)>9!D+b>)G#_9ak z4!^@&k-W$o*f^~Kv+u!s&_7-($CR-64^sz;9se1Ulvp+62yd3Wq;{~V zCd&K2w`;vu`fca)*{Ad&9TU^*u4M&~ROwZ?-XtK3RpkGOR!2u?4y^MoCH3~1-CmV91Z0Q3?W1LZ~W%=#OQNhd;U4E*CzvH7RIwd_IJ@%4@!@=-?-S!QhRv3 zagy)i*`9Z^9(R@cg!y~Wrc*Tvj>MXkMXhV4Nc)Qb-m&fb9J8_UVr!<3ezi9plSPYR zU})$SK$k#gd%lfT2K6?|0^mpht^a12E~pM;<@o5G*QNp6g< zYY@va-OUivD{TMt-&Y;|PNp?}l8%8(HCgFgJ9|&_VXPTmk%X5ADVGWcw?M^0SGG6R za(n5bLCfann~#cM91Mg(!BfBljaCVhezeO_hVL@!FS^xU7y|+;1jc7%6yD&GrhCg1 zoC-)rIwH{ghB)KJzafbg+|6X}5m`sPRLB-kj4|$L==a7}N>_0qc}pUR(YGw@ zS3r*yPw0us6ikJFC!sI|1mpN!+V&buZ0o-Bcdm11^MMLwYpdjYMPovAw ztc_EVKbuDjzgIsuA~%tK0&!bs-Y3;BU6rfziD98nLj=S_v8DKC_(y zuiBvUB_kb^KLwP+HRkSECJ9dpZ^Nwp~Y?NPNz8 z=jMAt0Y;>g9bOMDhJ8IQlBCSzPt9NWU8p0!cS%L#UU1It@cF#Ls#sxri|qmClKaZp z*~;1A6Mwv-E^nmuF%fUtz2L_~!n`JTqGitavb`m$aScpqdxZq)1NvkrRky+VDx*se z4*VXDUEce~=quknY0`DuUSiqcysL!qR${A_yqA~Aq{`w27;-TN5+Gko0>|N-mI%jU z13~wdha>t}@yf-mR*e(Yo`cBX0Ox@7iL;0iJB6EbBLd~EJ8B`v+(AV_H$#J-owaK$ zKiv7?C5}lHHX50e!zq?d*J)sf^-5m&{{7#p6b4fY_uTj>FMF(eQ$>ZV3Xpoh@3f6#`QN5NrF!=!ba{#bG|P&HJpR-8Yb$VDQdVZ ziB)DW5HB>q75MsZIHt}}l2FsQtl93g@1oFEXq0t;R(ctvHikzPgZr^&AHOo-{(1O_kbTk%pT^swJ_0ul&gq?QCzk#X)Esfh{9icnM z^MxO%hVE_kyp|4g%XNe)W$yjs|I9h*g(C7I%HYEZPJ3OGf*!)XAILT$%jvVHF>V5} z%!88K`GYfyVuM{bb^6bDAbt->iyD%n_xhYcn$hs|wZDWOcDb%J?A&-`}nBWF)$ zlXH=pBIsN{=ZP})J;mV41iG2F_sTn4TVd^smNMEv%IZCR+Sb|jX;b=@f#ICoPP=!) zp1~cF=08~4swc?G5Z}Wh_d2`B3G!(tt}y3ISzfzpH3p6!csP1Z?CubuY-QFhU4IF0 zil$nNrBwAY5B2<*t)7+Vc+UcxW23(jt9cBdzcNb#b!MST&^4uNC^MvWk@wPrbl1re zvF0a?#YBe+-3UBXn47$iaAcROz;%{n;r;Z7bW5%AqlQel*4q!oao9l(<_U-#Cm5m{ zpQW!u_5}In@uvb|>nnx72FA}7dpAjRbxvQvgFB3-0W|WV|Ecpall~DF=7T*AL*~-) zx1jodv!0mc{!yl%bNMMf+$qfgt#Jl4n@L`}4{g>0XS z)1}D-(*1l|po7O31eS}Kfzg4SYbunD5Y>X{I0{`e<~Wq|=u?oQ>_humfNF+#YJYFJ z@fi6T@lN5Cg3pw~f?1*YzWDcY#El|S1RnZS+vX8-QYuB6jb_YxNCUj3fBfvsjV?II z*KZR0xjxkeXX3Ya4Lbz!M@}lz2b)#G)S3Fn8xKAD5-rCBax!lnFm+k%r=x0{^91F` zD?WhgV%o}~eJ4(nS&Wntl%6wRDtYa;Pby;_Suo0qz%Pl*?(J7*&b=zx<6kwA>8qfDho|yaFE=F@}!b-Zo&O6zh^ zb%@ReG%JxbOqDx~reJ)0O!(}R{0{I3Af!rM#QlII9fx$dg;!v$O+n+5^Cwzs#8%HN zdas`SQ&?#*0zy!UOj13%5fScAWMKHR`RKF!wVWUI$1!Ysz~htpI!F1amc6I$N<=DN z1a3*>l(<1!{@C`5!~p@#Ov$|LtKy7XI@323%t?uJztsBRbU7wwVnSnzDWhK<*@^6< zXT9URZac#CJ8E(_jr^MB$9Ks^Fh|=ec><)y-%50wZqtcdDM?AjXev!%xRt(PPi{(| z`+l<}y1i5w+e28$W7wR&vOj8KM+1cYripWhZVud<<*CljRvbl;;gN=`cmS+-Du;u& zcle4gr=q*?P|avT%R${K{O=^UK3&Q#$8!>5(H^5S~BWLSJ?e z&wAopOx=yVlgK6c<5tj)o%$?($3pckfgWTkuJ?^vO>1$0YS?AeFU-$w+rTLrR4 z&o^OIeGIi;)3tlkn0~eBaC8?QT1yj6i-#4d{tycml%4`F2TX79sFHh` z2Im1Xr>LNC1A~feC2vwi&)`x2{!!qPUV4tw>y19NV6W}fnK4fwIzhA{K^O23(dxx&a6D!G*Q#Y1P!@u z!*R|-g453EN{`Fe0RC&4WYWsSOBY&GVOXik&ufvE~I{aj-1FZDh z5w>qw=*ZZH{=$$sM(ikXi6M7-(>T$g=@|yTtPAb$=eOYT zv^YCA_jcZYwCC6Eft;N>l#bNJCy)ND7(JJ}7`*%v0{K&U*I*O%4)nD!u6!xPiWJ4(1r?i<+paRr9Zj=c+0$swcag-T zIWo3C09(EV-+A!gPXYp?C2?EhR!|lD6}5Afs)rBEruoM3d;{*hkjd2@zD=}&D;pE? zLYPilcPfhVwmapoe+dhK*Ya|zs8zBP@L3@OR+k^=ErHP)Y9>F`4q8&54ess=0`m|c z1J~RW^qVz!+Mzl=F%csftR**ZDRMD>;w{6*H>u6GZYd%>kG|W4em8o}8VlrmL@s}L zzOggO2*Y!-*uKD;YHXATOm-tir8`ZW5_F8?=H_18*l2o1D)asH*FoXu7zY*m5>h?S zv(mye%T;)_m+@hS3}Ye(?fTA6`{DW!qC?RlaHS4?@W>|0ZRut`Xr41LJ4>29fCr_> z1WJHjIoVv2NsR5;hr=KK10Dvj99YPLhv65>=H|@2G=$LdQN8OT4kYMLL`=*oE6Z#S z`Zg2wO1R;nX|H5y{7wKJ1wA9aL;Swq^xP!U9n*KlyBq!qr}nIEZep_Fp4ZpQ05AT! z^Jta#4%5}XLUz{D2c195Zds+J_Y!l(odnE#INFA9+n^A)BpWX)-y9oUo^se~l7Zyq(-3ojgRPeyHvq!Oc0s2g;2RyRrI zNUoH;a9pz3OIFh(OxEJ16GFYh1vM{oWdAmRM-JhA&i+V(f=GcnoZH>ohuj+ zzW&c)f{Z>~;1eZlOzi4~I1>7{m5OXh$ua|J4I((a(GS}xV47&`F0c1$kzAqSfK4*+ z{En^(eH3Aj<8xP0bf8E!AU^HB1I@+M=qPT(ENLgk9-T(k?% zqZhNhuf>h-n+W_lX@|mWuGRDJ7ow<9w$^i{(B%s)I3$CCCv<3C$=h2rP1CNsJu(2L zEnp_`A={^a|Kbey{)Z=aet&lx<4ECvKZ7{C_XJ#)DB?eGPRcQ2m9wPojVco3Q%;Mdb75*^Jr4l>l8WZYi0hZ3lrOvzAj8XHBHzI}`6zlB zznDBp*dUkSRVskJA$N9hTNYG*FBy;rpVmz*nCrhNXt?@Lt1RBhB1V&q4L6iK{JLdg zE1;8a>fYnBVDn4KbGcNW3aeeg$@)Jl`!2aFVMh;BtOK#g! zy^Z_YVb=mNPU!$GPObiXApe&fi<$)+=%K0<$k6439bpjD_mK!8NP|`_JW>BL%j{Rs mFtamhkYMjc1o9j2~%zW From 1afcc2cd4c9e6120520cbe0d090ed8e108ce04a3 Mon Sep 17 00:00:00 2001 From: Sonic121x <64410541+Sonic121x@users.noreply.github.com> Date: Mon, 28 Dec 2020 04:46:25 +0800 Subject: [PATCH 39/52] Update hardsuit.dm --- code/modules/clothing/spacesuits/hardsuit.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index d61d842ece..40ad6dddd1 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -875,7 +875,7 @@ desc = "A helmet designed with both form and function in mind, it protects the user against physical trauma and hazardous conditions while also having polychromic light strips." icon_state = "hardsuit0-knight_cydonia" item_state = "knight_yellow" - hardsuit_type = knight_cydonia + hardsuit_type = "knight_cydonia" max_heat_protection_temperature = FIRE_SUIT_MAX_TEMP_PROTECT resistance_flags = FIRE_PROOF | LAVA_PROOF heat_protection = HEAD From 365abe1c5a6f1c21b251261d471bb05f7388d1b5 Mon Sep 17 00:00:00 2001 From: keronshb Date: Sun, 27 Dec 2020 17:15:59 -0500 Subject: [PATCH 40/52] Allows Energy Bola to be catchable Allows Energy Bola to be catchable --- code/game/objects/items/handcuffs.dm | 7 ------- 1 file changed, 7 deletions(-) diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm index 4c9ea06620..296b46bf85 100644 --- a/code/game/objects/items/handcuffs.dm +++ b/code/game/objects/items/handcuffs.dm @@ -377,10 +377,3 @@ hitsound = 'sound/weapons/taserhit.ogg' w_class = WEIGHT_CLASS_SMALL breakouttime = 60 - -/obj/item/restraints/legcuffs/bola/energy/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum) - if(iscarbon(hit_atom)) - var/obj/item/restraints/legcuffs/beartrap/B = new /obj/item/restraints/legcuffs/beartrap/energy/cyborg(get_turf(hit_atom)) - B.Crossed(hit_atom) - qdel(src) - ..() From 33358776ec2b0d4d61362d847db089ddc7d7743f Mon Sep 17 00:00:00 2001 From: Putnam Date: Sun, 27 Dec 2020 17:49:15 -0800 Subject: [PATCH 41/52] Makes regen coma properly work at 25% when sleeping --- code/datums/diseases/advance/symptoms/heal.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/heal.dm b/code/datums/diseases/advance/symptoms/heal.dm index 2fc853500d..cd7b1eb67c 100644 --- a/code/datums/diseases/advance/symptoms/heal.dm +++ b/code/datums/diseases/advance/symptoms/heal.dm @@ -265,12 +265,12 @@ var/mob/living/M = A.affected_mob if(HAS_TRAIT(M, TRAIT_DEATHCOMA)) return power - else if(M.IsUnconscious() || M.stat == UNCONSCIOUS) - return power * 0.9 else if(M.stat == SOFT_CRIT) return power * 0.5 else if(M.IsSleeping()) return power * 0.25 + else if(M.IsUnconscious() || M.stat == UNCONSCIOUS) + return power * 0.9 else if(M.getBruteLoss() + M.getFireLoss() >= 70 && !active_coma) to_chat(M, "You feel yourself slip into a regenerative coma...") active_coma = TRUE From fd8f5c4afd06f58a2204fec3d03f77c5bf064b98 Mon Sep 17 00:00:00 2001 From: Putnam Date: Sun, 27 Dec 2020 17:54:53 -0800 Subject: [PATCH 42/52] Makes coma more precedent. --- code/datums/diseases/advance/symptoms/heal.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/datums/diseases/advance/symptoms/heal.dm b/code/datums/diseases/advance/symptoms/heal.dm index cd7b1eb67c..c19f23ed2a 100644 --- a/code/datums/diseases/advance/symptoms/heal.dm +++ b/code/datums/diseases/advance/symptoms/heal.dm @@ -263,6 +263,10 @@ /datum/symptom/heal/coma/CanHeal(datum/disease/advance/A) var/mob/living/M = A.affected_mob + if(M.getBruteLoss() + M.getFireLoss() >= 70 && !active_coma) + to_chat(M, "You feel yourself slip into a regenerative coma...") + active_coma = TRUE + addtimer(CALLBACK(src, .proc/coma, M), 60) if(HAS_TRAIT(M, TRAIT_DEATHCOMA)) return power else if(M.stat == SOFT_CRIT) @@ -271,10 +275,6 @@ return power * 0.25 else if(M.IsUnconscious() || M.stat == UNCONSCIOUS) return power * 0.9 - else if(M.getBruteLoss() + M.getFireLoss() >= 70 && !active_coma) - to_chat(M, "You feel yourself slip into a regenerative coma...") - active_coma = TRUE - addtimer(CALLBACK(src, .proc/coma, M), 60) /datum/symptom/heal/coma/proc/coma(mob/living/M) if(deathgasp) From e8fea4cf1ba56fc90ef4874b2e5f649eaf21b7b5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Mon, 28 Dec 2020 00:19:35 -0700 Subject: [PATCH 43/52] Update human_defines.dm --- code/modules/mob/living/carbon/human/human_defines.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm index 2e8641b43e..341aa6a30f 100644 --- a/code/modules/mob/living/carbon/human/human_defines.dm +++ b/code/modules/mob/living/carbon/human/human_defines.dm @@ -14,7 +14,7 @@ blocks_emissive = EMISSIVE_BLOCK_UNIQUE block_parry_data = /datum/block_parry_data/unarmed/human - default_block_parry_data = /datum/block_parry_data/unarmed/pugilist + default_block_parry_data = /datum/block_parry_data/unarmed/human //Hair colour and style var/hair_color = "000" From f5c4bd614d9090f5da5199de20f3692d76e1fed3 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 09:57:14 -0600 Subject: [PATCH 44/52] Automatic changelog generation for PR #13838 [ci skip] --- html/changelogs/AutoChangeLog-pr-13838.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13838.yml diff --git a/html/changelogs/AutoChangeLog-pr-13838.yml b/html/changelogs/AutoChangeLog-pr-13838.yml new file mode 100644 index 0000000000..deff5913b3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13838.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - bugfix: "things in DEATHCOMA do not deathgasp on death" From a48e8265b018173e291453fb5547f6ce37c5f217 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:08:32 -0600 Subject: [PATCH 45/52] Automatic changelog generation for PR #13897 [ci skip] --- html/changelogs/AutoChangeLog-pr-13897.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13897.yml diff --git a/html/changelogs/AutoChangeLog-pr-13897.yml b/html/changelogs/AutoChangeLog-pr-13897.yml new file mode 100644 index 0000000000..05637b0908 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13897.yml @@ -0,0 +1,5 @@ +author: "keronshb" +delete-after: True +changes: + - bugfix: "Allows Energy Bola to be caught" + - balance: "This also allows them to be dropped/picked up." From 21cfa42f91777205df085bce636574b6ef7cc9c6 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:10:29 -0600 Subject: [PATCH 46/52] Automatic changelog generation for PR #13893 [ci skip] --- html/changelogs/AutoChangeLog-pr-13893.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13893.yml diff --git a/html/changelogs/AutoChangeLog-pr-13893.yml b/html/changelogs/AutoChangeLog-pr-13893.yml new file mode 100644 index 0000000000..9eb7a3f79d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13893.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - tweak: "Meth and changeling adrenals no longer ignore all slowdowns, rather damage slowdowns." From 73c71d9969cf9c3729ed1546a0cd0ee5406ea09b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:11:36 -0600 Subject: [PATCH 47/52] Automatic changelog generation for PR #13894 [ci skip] --- html/changelogs/AutoChangeLog-pr-13894.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13894.yml diff --git a/html/changelogs/AutoChangeLog-pr-13894.yml b/html/changelogs/AutoChangeLog-pr-13894.yml new file mode 100644 index 0000000000..31e1e66328 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13894.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - tweak: "temperature slowdown divisor nerfed to 35 from 20." From 0b975ef6de48bb219dec9d6c1edbc786097b21b7 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:15:52 -0600 Subject: [PATCH 48/52] Automatic changelog generation for PR #13896 [ci skip] --- html/changelogs/AutoChangeLog-pr-13896.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13896.yml diff --git a/html/changelogs/AutoChangeLog-pr-13896.yml b/html/changelogs/AutoChangeLog-pr-13896.yml new file mode 100644 index 0000000000..f733efa09d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13896.yml @@ -0,0 +1,6 @@ +author: "Sonic121x" +delete-after: True +changes: + - rscadd: "alarm ert hardsuit sprite for naga and canine" + - tweak: "adjust the naga ert hardsuit to cover the hand" + - bugfix: "cydonia hardsuit helmet" From 8f0a526ee16b5d36aef603a82b3b32368ee80aeb Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:34:17 -0600 Subject: [PATCH 49/52] Automatic changelog generation for PR #13898 [ci skip] --- html/changelogs/AutoChangeLog-pr-13898.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13898.yml diff --git a/html/changelogs/AutoChangeLog-pr-13898.yml b/html/changelogs/AutoChangeLog-pr-13898.yml new file mode 100644 index 0000000000..cb4e0fd52d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13898.yml @@ -0,0 +1,5 @@ +author: "Putnam3145" +delete-after: True +changes: + - balance: "Regen coma now puts into a coma even from crit or while unconscious." + - bugfix: "Regen coma now properly weakens while asleep." From 0e9a29fc15b96036fdfb64f65e5074e5b5688e14 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:43:41 -0600 Subject: [PATCH 50/52] Automatic changelog generation for PR #13887 [ci skip] --- html/changelogs/AutoChangeLog-pr-13887.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13887.yml diff --git a/html/changelogs/AutoChangeLog-pr-13887.yml b/html/changelogs/AutoChangeLog-pr-13887.yml new file mode 100644 index 0000000000..83069a4e64 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13887.yml @@ -0,0 +1,4 @@ +author: "HeroWithYay" +delete-after: True +changes: + - bugfix: "Changed description of Necrotizing Fasciitis symptom." From eb8bb6c678303a914e7786d0a499848211387271 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:53:35 -0600 Subject: [PATCH 51/52] Automatic changelog generation for PR #13883 [ci skip] --- html/changelogs/AutoChangeLog-pr-13883.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13883.yml diff --git a/html/changelogs/AutoChangeLog-pr-13883.yml b/html/changelogs/AutoChangeLog-pr-13883.yml new file mode 100644 index 0000000000..884adafffe --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13883.yml @@ -0,0 +1,5 @@ +author: "silicons" +delete-after: True +changes: + - rscadd: "set-pose has been added" + - tweak: "temporary flavor text renamed to set pose, fully visible in examine" From e32f0a613f985fa694d3cfd04666ae457acef49b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Mon, 28 Dec 2020 10:55:30 -0600 Subject: [PATCH 52/52] Automatic changelog generation for PR #13882 [ci skip] --- html/changelogs/AutoChangeLog-pr-13882.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13882.yml diff --git a/html/changelogs/AutoChangeLog-pr-13882.yml b/html/changelogs/AutoChangeLog-pr-13882.yml new file mode 100644 index 0000000000..fe545bdc23 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13882.yml @@ -0,0 +1,4 @@ +author: "ERP mains" +delete-after: True +changes: + - rscadd: "Subtler Around Table is now a verb"

h9rbBMWbNqeIx3Dh|0=|<_)3t| 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 Y##xs9NvP8^hJcr%oQiCjv~ke?0XN)ucmMzZ literal 131870 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